mirror of https://github.com/armbian/build.git
Github Action: add input for the release tag to use
This commit is contained in:
parent
30ba495655
commit
48c600f988
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue