Github Action: add input for the release tag to use

This commit is contained in:
pykpkg47 2024-12-08 15:48:38 +00:00 committed by Igor
parent 30ba495655
commit 48c600f988
1 changed files with 5 additions and 1 deletions

View File

@ -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