adding the release tag name to the manual trigger for the release action
This commit is contained in:
parent
94b2e53c3f
commit
9e59dd6d63
|
@ -1,7 +1,11 @@
|
||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: {}
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
release_tag_name:
|
||||||
|
description: 'Release Tag Name (vX.X.X)'
|
||||||
|
required: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
@ -360,4 +364,4 @@ jobs:
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
||||||
RELEASE_TAG_NAME: ${{ github.event.release.tag_name }}
|
RELEASE_TAG_NAME: ${{ github.event.input.release_tag_name }}
|
||||||
|
|
Loading…
Reference in New Issue