From 34adf25967da011be09c85d831b93dca8ca5cd9a Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Wed, 11 Mar 2026 20:03:27 +0100 Subject: [PATCH] Update build-installer-iso.yml --- .github/workflows/build-installer-iso.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-installer-iso.yml b/.github/workflows/build-installer-iso.yml index ce423bb..d4695d7 100644 --- a/.github/workflows/build-installer-iso.yml +++ b/.github/workflows/build-installer-iso.yml @@ -25,12 +25,14 @@ jobs: - name: Download latest Fedora Server ISO run: | FEDORA_BASE=https://download.fedoraproject.org/pub/fedora/linux/releases - FEDORA_VER=$(curl -s https://getfedora.org/releases.json | jq -r '.[] | select(.state=="current") | .version') - + FEDORA_VER=$(curl -s https://fedoraproject.org/releases.json \ + | jq -r '.[] | select(.state=="current") | .version') + echo "Using Fedora $FEDORA_VER" - + wget -O fedora-server.iso \ - $FEDORA_BASE/$FEDORA_VER/Server/x86_64/iso/Fedora-Server-dvd-x86_64-$FEDORA_VER-*.iso + $FEDORA_BASE/$FEDORA_VER/Server/x86_64/iso/Fedora-Server-dvd-x86_64-$FEDORA_VER-*.iso + - name: Install mkksiso run: |