From 7be8c488ffcd4726b6aa214e755a1b3570631744 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:17:09 +0100 Subject: [PATCH] Delete .github/workflows/reusable-build-iso-anaconda.yml --- .../workflows/reusable-build-iso-anaconda.yml | 62 ------------------- 1 file changed, 62 deletions(-) delete mode 100644 .github/workflows/reusable-build-iso-anaconda.yml diff --git a/.github/workflows/reusable-build-iso-anaconda.yml b/.github/workflows/reusable-build-iso-anaconda.yml deleted file mode 100644 index 3b6ceb2..0000000 --- a/.github/workflows/reusable-build-iso-anaconda.yml +++ /dev/null @@ -1,62 +0,0 @@ -name: Reusable Build ISO -on: - workflow_call: - inputs: - image_tag: - type: string - default: stable - upload_artifacts: - type: boolean - default: false - upload_r2: - type: boolean - default: true - secrets: - R2_ACCESS_KEY_ID_2025: - required: false - R2_SECRET_ACCESS_KEY_2025: - required: false - R2_ENDPOINT_2025: - required: false - -jobs: - build: - name: Build ISO - runs-on: ubuntu-24.04 - permissions: - contents: read - packages: read - - steps: - - name: Checkout - uses: actions/checkout@v5 - - - name: Create empty flatpak list - id: flatpaks - run: | - FILE="$(mktemp)" - : > "$FILE" - echo "file=$FILE" >> "$GITHUB_OUTPUT" - - - name: Build ISO - id: build - uses: ublue-os/titanoboa@main - with: - image-ref: ghcr.io/humocs-man/fluffy-pancake:${{ inputs.image_tag }} - flatpaks-list: ${{ steps.flatpaks.outputs.file }} - hook-post-rootfs: ${{ github.workspace }}/iso/enable_anaconda.sh - kargs: NONE - builder-distro: fedora - - - name: Rename ISO - run: | - mkdir -p output - mv "${{ steps.build.outputs.iso-dest }}" output/fluffy-pancake-${{ inputs.image_tag }}.iso - sha256sum output/*.iso | tee output/CHECKSUMS - - - name: Upload Artifacts - if: inputs.upload_artifacts - uses: actions/upload-artifact@v5 - with: - name: fluffy-pancake-iso - path: output