From 12dad1dafa9629c92cda884872728314c12a2dca Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Sun, 8 Mar 2026 16:10:32 +0100 Subject: [PATCH] Create Build Live ISO --- .github/workflows/Build Live ISO | 38 ++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/Build Live ISO diff --git a/.github/workflows/Build Live ISO b/.github/workflows/Build Live ISO new file mode 100644 index 0000000..8869845 --- /dev/null +++ b/.github/workflows/Build Live ISO @@ -0,0 +1,38 @@ +name: Build Live ISO (Titanoboa + Anaconda) + +on: + workflow_dispatch: + +permissions: + contents: read + packages: read + +jobs: + iso: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Build Live ISO + id: iso + uses: ublue-os/titanoboa@main + with: + image-ref: ghcr.io/${{ github.repository }}:stable + builder-distro: fedora + hook-post-rootfs: ${{ github.workspace }}/iso/enable_anaconda.sh + + - name: Rename + checksum + run: | + set -euo pipefail + mkdir -p output + mv "${{ steps.iso.outputs.iso-dest }}" \ + output/${{ github.event.repository.name }}-live.iso + (cd output && sha256sum *.iso > SHA256SUMS) + + - name: Upload ISO + uses: actions/upload-artifact@v4 + with: + name: live-iso + path: output/*