This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
fix: make volid shorter to fit within 32 char #37
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: Test Generate ISO | |
on: | |
merge_group: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'Containerfile' | |
- '*.md' | |
- 'LICENSE' | |
- 'CODEOWNERS' | |
jobs: | |
build-and-push-iso: | |
name: Build ISO | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:39 | |
options: "--privileged" | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
version: | |
- 38 | |
- 39 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build ISO | |
uses: ./ | |
with: | |
ARCH: 'x86_64' | |
IMAGE_NAME: 'base-main' | |
IMAGE_REPO: 'ghcr.io/ublue-os' | |
VARIANT: 'Kinoite' | |
VERSION: ${{ matrix.version }} | |
ACTION_REPO: ${{ github.repository }} | |
ACTION_REF: ${{ github.ref }} | |
check: | |
name: Check build successful | |
if: ${{ !cancelled() }} | |
runs-on: ubuntu-latest | |
needs: | |
- build-and-push-iso | |
steps: | |
- name: Exit on failure for main | |
if: ${{ needs.build-and-push-iso.result == 'failure' || needs.build-and-push-iso.result == 'skipped' }} | |
shell: bash | |
run: exit 1 | |
- name: Exit | |
shell: bash | |
run: exit 0 |