feat: Add ISO torrents via archive.org, huge thanks to @qoijjj for all the work on this #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build ISOs | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- '.github/workflows/build_iso.yml' | |
env: | |
IMAGE_REGISTRY: ghcr.io/${{ github.repository_owner }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build-iso: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
container: | |
image: fedora:${{ matrix.major_version }} | |
options: "--privileged" | |
volumes: | |
- "/:/host" | |
strategy: | |
fail-fast: false | |
matrix: | |
image_name: [bazzite, bazzite-nvidia, bazzite-gnome, bazzite-gnome-nvidia, bazzite-deck, bazzite-deck-gnome, bazzite-ally, bazzite-ally-gnome, bazzite-asus, bazzite-gnome-asus, bazzite-asus-nvidia, bazzite-gnome-asus-nvidia] | |
major_version: [39] | |
image_tag: [stable] | |
steps: | |
- name: Set EXTRA_BOOT_PARAMS | |
run: | | |
EXTRA_BOOT_PARAMS="" | |
if [[ "${{ matrix.image_name }}" == "bazzite-deck" || "${{ matrix.image_name }}" == "bazzite-deck-gnome" || "${{ matrix.image_name }}" == "bazzite-deck-budgie" ]]; then | |
EXTRA_BOOT_PARAMS="inst.resolution=1280x800" | |
fi | |
echo "EXTRA_BOOT_PARAMS=$EXTRA_BOOT_PARAMS" >> $GITHUB_ENV | |
- name: Build ISOs | |
uses: ublue-os/[email protected] | |
id: build | |
with: | |
ARCH: x86_64 | |
IMAGE_NAME: ${{ matrix.image_name }} | |
IMAGE_REPO: ${{ env.IMAGE_REGISTRY }} | |
VARIANT: 'Kinoite' | |
VERSION: ${{ matrix.major_version }} | |
IMAGE_TAG: ${{ matrix.image_tag }} | |
SECURE_BOOT_KEY_URL: 'https://github.com/ublue-os/akmods/raw/main/certs/public_key.der' | |
ENROLLMENT_PASSWORD: 'ublue-os' | |
EXTRA_BOOT_PARAMS: ${{ env.EXTRA_BOOT_PARAMS }} | |
- name: Upload ISOs and Checksum to Job Artifacts | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.image_name }}-${{ matrix.image_tag }}-${{ matrix.major_version}} | |
path: ${{ steps.build.outputs.output-directory }} | |
if-no-files-found: error | |
retention-days: 0 | |
compression-level: 0 | |
overwrite: true | |
- name: Upload ISOs and Checksum to R2 | |
if: github.event_name == 'workflow_dispatch' | |
shell: bash | |
env: | |
RCLONE_CONFIG_R2_TYPE: s3 | |
RCLONE_CONFIG_R2_PROVIDER: Cloudflare | |
RCLONE_CONFIG_R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} | |
RCLONE_CONFIG_R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} | |
RCLONE_CONFIG_R2_REGION: auto | |
RCLONE_CONFIG_R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }} | |
SOURCE_DIR: ${{ steps.build.outputs.output-directory }} | |
run: | | |
dnf install -y rclone | |
rclone copy $SOURCE_DIR R2:bazzite | |
- name: Upload ISOs to archive.org | |
uses: qoijjj/internet-archive-upload@v7 | |
with: | |
access-key: ${{ secrets.IA_ACCESS_KEY }} | |
secret-key: ${{ secrets.IA_SECRET_KEY }} | |
identifier: ${{ env.IMAGE_NAME }}-${{ matrix.major_version }} | |
files: ${{ steps.build.outputs.output-directory }} |