From 48c600f988d812928fadb013df0e27442b2e4960 Mon Sep 17 00:00:00 2001 From: pykpkg47 <118465017+pykpkg47@users.noreply.github.com> Date: Sun, 8 Dec 2024 15:48:38 +0000 Subject: [PATCH] Github Action: add input for the release tag to use --- action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 3a462994e7..57cfcc0e44 100644 --- a/action.yml +++ b/action.yml @@ -87,6 +87,10 @@ inputs: required: false default: "Build with [Armbian tools](https://github.com/armbian/build)" + armbian_release_tag: + description: "Armbian release tag" + required: false + runs: using: "composite" @@ -193,7 +197,7 @@ runs: - uses: ncipollo/release-action@v1 with: - tag: "${{ env.ARMBIAN_VERSION }}" + tag: ${{ inputs.armbian_release_tag != '' && inputs.armbian_release_tag || env.ARMBIAN_VERSION }} name: "${{ inputs.armbian_release_tittle }}" artifacts: "${{ inputs.armbian_artifacts }}*" allowUpdates: true