1
0
Fork 0
mirror of https://github.com/JasonN3/build-container-installer.git synced 2025-12-25 10:57:55 +01:00

pull back updates from downstream

This commit is contained in:
Jason N. 2024-02-26 08:25:39 -05:00
parent feec50596a
commit c491c02d7c
11 changed files with 286 additions and 139 deletions

43
action.yml Normal file
View file

@ -0,0 +1,43 @@
name: Build Contianer Installer
description: generate an ISO for installing OSTrees stored in a container
inputs:
arch:
description: Architecture for image to build
required: true
default: x86_64
image_name:
description: Name of the source container image
required: true
default: base
image_repo:
description: Repository containing the source container image
required: true
default: quay.io/fedora-ostree-desktops
variant:
description: "Source container variant. Available options can be found by running `dnf provides system-release`. Variant will be the third item in the package name. Example: `fedora-release-kinoite-39-34.noarch` will be kinonite"
required: true
default: Server
version:
description: Fedora version of installer to build
required: true
default: "39"
image_tag:
description: Tag of the source container image. Defaults to the installer version
required: false
web_ui:
description: Enable Anaconda WebUI
required: true
default: "false"
runs:
using: docker
image: 'Dockerfile'
args:
- ARCH=${{ inputs.arch }}
- IMAGE_NAME=${{ inputs.image_name }}
- IMAGE_REPO=${{ inputs.image_repo }}
- VARIANT=${{ inputs.variant }}
- VERSION=${{ inputs.version }}
- IMAGE_TAG=${{ inputs.image_tag }}
- WEB_UI=${{ inputs.web_ui }}