Skip to content

Commit

Permalink
Cleanup ISO builds
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 authored Aug 7, 2024
1 parent 73ab73c commit b9cecee
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build_iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:

env:
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }}
INSTALLER_VERSION: 40

concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
Expand All @@ -26,29 +25,29 @@ jobs:
fail-fast: false
matrix:
image_name: [cosmic-silverblue, cosmic-base]
image_tag: [40-amd64, rawhide-amd64]
fedora_version: [40]

steps:
- name: Build ISOs
uses: jasonn3/build-container-installer@v1.2.1
uses: jasonn3/build-container-installer@v1.2.2
id: build
with:
arch: ${{ contains(matrix.image_tag, 'amd64') && 'x86_64' || 'arm64' }}
arch: x86_64
image_name: ${{ matrix.image_name }}
image_repo: ghcr.io/ublue-os
enable_flatpak_dependencies: false
# We cannot use Silverblue variant since we need the user creation options in anaconda
variant: 'Kinoite'
version: ${{ env.INSTALLER_VERSION }}
image_tag: ${{ matrix.image_tag }}
version: ${{ matrix.fedora_version }}
image_tag: ${{ matrix.fedora_version }}-amd64
secure_boot_key_url: 'https://github.com/ublue-os/akmods/raw/main/certs/public_key.der'
enrollment_password: 'ublue-os'
iso_name: ${{ matrix.image_name }}-${{ steps.generate-tag.outputs.tag }}

- name: Upload ISOs and Checksum to Job Artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.image_name }}-${{ matrix.image_tag }}
name: ${{ matrix.image_name }}-${{ matrix.fedora_version }}-amd64
path: |
${{ steps.build.outputs.iso_path }}
${{ steps.build.outputs.iso_path }}-CHECKSUM
Expand Down

0 comments on commit b9cecee

Please sign in to comment.