mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
fix: updated volume and added output_dir to inputs
This commit is contained in:
parent
3d04223800
commit
d1d9713d80
2 changed files with 5 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ WORKDIR /build-container-installer
|
||||||
|
|
||||||
RUN dnf install -y make && make install-deps
|
RUN dnf install -y make && make install-deps
|
||||||
|
|
||||||
VOLUME /build-container-installer/build
|
VOLUME ${OUTPUT_DIR}
|
||||||
|
|
||||||
ENTRYPOINT ["/bin/bash", "/build-container-installer/entrypoint.sh"]
|
ENTRYPOINT ["/bin/bash", "/build-container-installer/entrypoint.sh"]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,9 @@ inputs:
|
||||||
secure_boot_key_url:
|
secure_boot_key_url:
|
||||||
description: Secure boot key that is installed from URL location
|
description: Secure boot key that is installed from URL location
|
||||||
required: false
|
required: false
|
||||||
|
output_dir:
|
||||||
|
description: Define a specific output directory
|
||||||
|
required: false
|
||||||
action_version:
|
action_version:
|
||||||
description: Version of the action container to run
|
description: Version of the action container to run
|
||||||
deprecationMessage: No longer used. github.action_ref replaces the need for this. Will be removed in a future version.
|
deprecationMessage: No longer used. github.action_ref replaces the need for this. Will be removed in a future version.
|
||||||
|
|
@ -63,5 +66,6 @@ runs:
|
||||||
WEB_UI=${{ inputs.web_ui }} \
|
WEB_UI=${{ inputs.web_ui }} \
|
||||||
ENROLLMENT_PASSWORD=${{ inputs.enrollment_password }} \
|
ENROLLMENT_PASSWORD=${{ inputs.enrollment_password }} \
|
||||||
SECURE_BOOT_KEY_URL=${{ inputs.secure_boot_key_url }} \
|
SECURE_BOOT_KEY_URL=${{ inputs.secure_boot_key_url }} \
|
||||||
|
OUTPUT_DIR=${{ inputs.output_dir }}
|
||||||
"ADDITIONAL_TEMPLATES=${{ inputs.additional_templates }}"
|
"ADDITIONAL_TEMPLATES=${{ inputs.additional_templates }}"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue