Chroot...
Some checks failed
Build and push OCI image / build (push) Failing after 1m9s

This commit is contained in:
2025-08-19 20:56:54 +02:00
parent 9376209c92
commit f5a5c2ed8d

View File

@@ -25,7 +25,7 @@ jobs:
- name: Install Buildah
run: |-
if ! comamnd -v buildah 2>/dev/null; then
if ! command -v buildah 2>/dev/null; then
echo "Install Buildah"
sudo apt-get update
sudo apt-get install -y buildah
@@ -35,7 +35,7 @@ jobs:
- name: Build and tag
run: |-
buildah build --isolation=chroot --build-arg VERSION=$VERSION -t katenary -f ./oci/katenary/Containerfile .
buildah build --build-arg VERSION=$VERSION -t katenary -f ./oci/katenary/Containerfile .
buildah tag katenary $REGISTRY/${IMAGE_NAME,,}:$VERSION
buildah tag katenary $REGISTRY/${IMAGE_NAME,,}:latest