56 lines
1.1 KiB
YAML
56 lines
1.1 KiB
YAML
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:
|
|
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
|
|
- 40
|
|
include:
|
|
- version: 40
|
|
web_ui: 'true'
|
|
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: ${{ matrix.version }}
|
|
WEB_UI: ${{ matrix.web_ui }}
|
|
ACTION_REPO: ${{ github.repository }}
|
|
ACTION_REF: ${{ github.ref }}
|