mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
make callable
This commit is contained in:
parent
a517a34a78
commit
a54f53fb11
1 changed files with 23 additions and 5 deletions
28
.github/workflows/iso.yml
vendored
28
.github/workflows/iso.yml
vendored
|
|
@ -7,13 +7,31 @@ on:
|
|||
tags:
|
||||
- 'v*'
|
||||
pull_request:
|
||||
|
||||
workflow_call:
|
||||
inputs:
|
||||
IMAGE_VERSION:
|
||||
required: true
|
||||
type: string
|
||||
IMAGE_ARCH:
|
||||
required: true
|
||||
type: string
|
||||
IMAGE_NAME:
|
||||
required: true
|
||||
type: string
|
||||
IMAGE_REPO:
|
||||
required: true
|
||||
type: string
|
||||
IMAGE_REPO:
|
||||
required: true
|
||||
type: string
|
||||
|
||||
env:
|
||||
IMAGE_VERSION: 39
|
||||
IMAGE_ARCH: x86_64
|
||||
IMAGE_NAME: base-main
|
||||
IMAGE_REPO: ghcr.io/ublue-os
|
||||
VARIANT: Silverblue
|
||||
IMAGE_VERSION: ${{ github.event.inputs.IMAGE_VERSION || '39' }}
|
||||
IMAGE_ARCH: ${{ github.event.inputs.IMAGE_ARCH || 'x86_64' }}
|
||||
IMAGE_NAME: ${{ github.event.inputs.IMAGE_NAME || 'base-main' }}
|
||||
IMAGE_REPO: ${{ github.event.inputs.IMAGE_REPO || 'ghcr.io/ublue-os' }}
|
||||
VARIANT: ${{ github.event.inputs.VARIANT || 'Silverblue' }}
|
||||
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue