From bfc901e99c05ccd5961b151ca2cc138f883f3872 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Wed, 11 Mar 2026 20:11:58 +0100 Subject: [PATCH] Update build-installer-iso.yml --- .github/workflows/build-installer-iso.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-installer-iso.yml b/.github/workflows/build-installer-iso.yml index d4695d7..8bbf6e6 100644 --- a/.github/workflows/build-installer-iso.yml +++ b/.github/workflows/build-installer-iso.yml @@ -26,12 +26,15 @@ jobs: run: | FEDORA_BASE=https://download.fedoraproject.org/pub/fedora/linux/releases FEDORA_VER=$(curl -s https://fedoraproject.org/releases.json \ - | jq -r '.[] | select(.state=="current") | .version') + | jq -r '.[] | select(.state=="current") | .version') - echo "Using Fedora $FEDORA_VER" + ISO_URL=$(curl -s $FEDORA_BASE/$FEDORA_VER/Server/x86_64/iso/ \ + | grep -oP 'Fedora-Server-dvd-x86_64-[^"]+\.iso' \ + | head -n1) 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/$ISO_URL + - name: Install mkksiso