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 \