This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
fix: General Fixes #3
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: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
paths-ignore: | |
- 'Containerfile' | |
- '*.md' | |
- 'LICENSE' | |
- 'CODEOWNERS' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'Containerfile' | |
- '*.md' | |
- 'LICENSE' | |
- 'CODEOWNERS' | |
jobs: | |
build-and-push-iso: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:39 | |
options: "--privileged" | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Build ISO | |
uses: ./action.yml | |
with: | |
ARCH: 'x86_64' | |
IMAGE_NAME: 'base-main' | |
IMAGE_REPO: 'ghcr.io/ublue-os' | |
IMAGE_TAG: 'latest' | |
VARIANT: 'Kinoite' | |
VERSION: '39' | |
WEB_UI: 'false' | |
ACTION_REPO: ${{ github.repository }} | |
ACTION_REF: ${{ github.ref }} |