mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
general fixes
This commit is contained in:
parent
70bc2264ba
commit
c48c28120b
13 changed files with 357 additions and 173 deletions
43
.github/workflows/test-iso.yml
vendored
Normal file
43
.github/workflows/test-iso.yml
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
name: Test Generate ISO
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
tags:
|
||||
- 'v*'
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
ARCH: ${{ inputs.ARCH || 'x86_64' }}
|
||||
IMAGE_NAME: ${{ inputs.IMAGE_NAME || 'base-main' }}
|
||||
IMAGE_REPO: ${{ inputs.IMAGE_REPO || 'ghcr.io/ublue-os' }}
|
||||
IMAGE_TAG: ${{ inputs.IMAGE_TAG || 'latest' }}
|
||||
VARIANT: ${{ inputs.VARIANT || 'Kinoite' }}
|
||||
VERSION: ${{ inputs.VERSION || '39' }}
|
||||
WEB_UI: ${{ inputs.WEB_UI || 'false' }}
|
||||
CURR_REPO: ${{ inputs.BUILD_REPO || github.repository }}
|
||||
CURR_REF: ${{ inputs.BUILD_REF || github.ref }}
|
||||
|
||||
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: ublue-os/isogenerator
|
||||
with:
|
||||
ARCH: 'x86_64'
|
||||
IMAGE_NAME: 'base-main'
|
||||
IMAGE_REPO: 'ghcr.io/ublue-os'
|
||||
IMAGE_TAG: 'latest'
|
||||
VARIANT: 'Kinoite'
|
||||
VERSION: '39'
|
||||
WEB_UI: 'false'
|
||||
CURR_REPO: ${{ github.repository }}
|
||||
CURR_REF: ${{ github.ref }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue