From 7e490a11e2e083313b946cc7d6e1789d39125644 Mon Sep 17 00:00:00 2001 From: Pedro Tashima <23709916+tashima42@users.noreply.github.com> Date: Thu, 8 Aug 2024 11:19:41 -0300 Subject: [PATCH] add a custom install script version (#466) --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index c33ac8fb..700eb380 100644 --- a/action.yml +++ b/action.yml @@ -4,11 +4,15 @@ inputs: version: description: 'The tag of the ecm-distro-tools release to install.' required: true + install-script-version: + description: 'The version of the install script to use.' + required: false + default: ${{ github.action_ref }} runs: using: 'composite' steps: - env: - INSTALL_SCRIPT_TAG: ${{ github.action_ref }} + INSTALL_SCRIPT_TAG: ${{ inputs.install-script-version }} shell: bash run: | INSTALL_SCRIPT_PATH="${RUNNER_TEMP}/install.sh"