From 11341675237ddcebdbe7ab8468e54ad09f6de6c0 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Wed, 11 Mar 2026 22:09:42 +0100 Subject: [PATCH] Update build-installer-iso.yml --- .github/workflows/build-installer-iso.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-installer-iso.yml b/.github/workflows/build-installer-iso.yml index fd0e276..0f7a027 100644 --- a/.github/workflows/build-installer-iso.yml +++ b/.github/workflows/build-installer-iso.yml @@ -18,21 +18,24 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - # 🔑 WICHTIG: bootc-image-builder zieht Images NICHT selbst - - name: Pull bootc base image + - name: Install podman run: | - docker pull ghcr.io/humocs-man/fluffy-pancake:stable + sudo apt-get update + sudo apt-get install -y podman - - name: Pull bootc-image-builder container + - name: Pull installer image (bootc rootfs) run: | - docker pull quay.io/centos-bootc/bootc-image-builder:latest + sudo podman pull ghcr.io/humocs-man/fluffy-pancake:stable + + - name: Pull bootc-image-builder + run: | + sudo podman pull quay.io/centos-bootc/bootc-image-builder:latest - name: Build ISO run: | - docker run --rm --privileged \ + sudo podman run --rm --privileged \ -v "${{ github.workspace }}:/workspace" \ -v "${{ github.workspace }}/output:/output" \ - -v "/var/lib/containers/storage:/var/lib/containers/storage" \ quay.io/centos-bootc/bootc-image-builder:latest \ /workspace/iso/config.toml