Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cleanup ISO builds #56

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading