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

feat: added ISO_NAME as param

This commit is contained in:
Noel Miller 2024-03-06 00:37:28 -06:00
parent 7a639d6445
commit f06a0ad6f4
4 changed files with 11 additions and 3 deletions

View file

@ -29,6 +29,10 @@ inputs:
description: Enable Anaconda WebUI
required: false
default: "false"
iso_name:
description: Used for specifying the name of the output iso
required: false
default: "${{ inputs.image_name }}-${{ inputs.image_tag || inputs.version }}"
enrollment_password:
description: Used for supporting secure boot (requires SECURE_BOOT_KEY_URL to be defined)
required: false
@ -61,6 +65,7 @@ runs:
VERSION=${{ inputs.version }} \
IMAGE_TAG=${{ inputs.image_tag || inputs.version }} \
WEB_UI=${{ inputs.web_ui }} \
ISO_NAME=${{ inputs.iso_name }} \
ENROLLMENT_PASSWORD=${{ inputs.enrollment_password }} \
SECURE_BOOT_KEY_URL=${{ inputs.secure_boot_key_url }} \
"ADDITIONAL_TEMPLATES=${{ inputs.additional_templates }}"