From cfd2eb69fd242c87a1421ba00d483b30e8d86ea3 Mon Sep 17 00:00:00 2001 From: obsidian-ai Date: Wed, 6 May 2026 23:58:56 +0100 Subject: [PATCH] ci(installer-iso): drop --title (not supported by livemedia-creator) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit livemedia-creator failed with 'unrecognized arguments: --title' — that flag is livecd-creator-only. Use --volid for the ISO volume label. --- .github/workflows/build-installer-iso.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-installer-iso.yml b/.github/workflows/build-installer-iso.yml index 90d2b20..c8af964 100644 --- a/.github/workflows/build-installer-iso.yml +++ b/.github/workflows/build-installer-iso.yml @@ -64,13 +64,15 @@ jobs: set -euxo pipefail mkdir -p build/out /var/lmc ln -sfn "$GITHUB_WORKSPACE" /work + # livemedia-creator does NOT support --title (that's livecd-creator). + # --volid replaces it for the ISO volume label. livemedia-creator \ --make-iso \ --no-virt \ --ks kickstart/install-ostreecontainer-installer.ks \ --resultdir build/out \ --tmp /var/lmc \ - --title "veilor-os" \ + --volid "veilor-os-installer-${RELEASEVER}" \ --project "veilor-os" \ --releasever "$RELEASEVER" \ --logfile build/out/build.log \