mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 19:07:54 +01:00
set workflow_call
This commit is contained in:
parent
bc36742a00
commit
4de145bf7d
1 changed files with 17 additions and 7 deletions
24
.github/workflows/iso.yml
vendored
24
.github/workflows/iso.yml
vendored
|
|
@ -1,13 +1,23 @@
|
||||||
name: Create and publish an ISO
|
name: Create and publish an ISO
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_call:
|
||||||
branches:
|
inputs:
|
||||||
- 'main'
|
IMAGE_VERSION:
|
||||||
tags:
|
required: true
|
||||||
- 'v*'
|
type: string
|
||||||
pull_request:
|
IMAGE_ARCH:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
IMAGE_NAME:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
IMAGE_REPO:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
VARIANT:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
env:
|
env:
|
||||||
IMAGE_VERSION: ${{ github.event.inputs.IMAGE_VERSION || '39' }}
|
IMAGE_VERSION: ${{ github.event.inputs.IMAGE_VERSION || '39' }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue