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

add flatpaks

This commit is contained in:
Jason N. 2024-03-04 15:16:59 -05:00
parent 88d7731848
commit 90edae91c1
5 changed files with 32 additions and 3 deletions

View file

@ -34,8 +34,20 @@ inputs:
required: true
default: "latest"
additional_templates:
description: Space delimetered list of additional Lorax templates to include
description: Space delimited list of additional Lorax templates to include
required: false
flatpak_remote_name:
description: Name of the Flatpak remote repo
required: false
default: "flathub"
flatpak_remote_url:
description: The URL of the Flatpak remote repo
required: false
default: https://dl.flathub.org/repo/
flatpak_remote_refs:
description: Space delimited list of refs to the flatpak packages to install
required: false
default: ""
runs:
using: composite
@ -51,5 +63,8 @@ runs:
VERSION=${{ inputs.version }} \
IMAGE_TAG=${{ inputs.image_tag || inputs.version }} \
WEB_UI=${{ inputs.web_ui }} \
"ADDITIONAL_TEMPLATES=${{ inputs.additional_templates }}"
"ADDITIONAL_TEMPLATES=${{ inputs.additional_templates }}" \
FLATPAK_REMOTE_NAME=${{ inputs.flatpak_remote_name }} \
FLATPAK_REMOTE_URL=${{ inputs.flatpak_remote_url }} \
FLATPAK_REMOTE_REFS=${{ inputs.flatpak_remote_refs }}