We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c88825 commit 3624825Copy full SHA for 3624825
1 file changed
.github/workflows/release.yml
@@ -4,6 +4,11 @@ on:
4
release:
5
types: [published]
6
workflow_dispatch:
7
+ inputs:
8
+ tag_name:
9
+ description: 'The tag name to attach these binaries to (e.g., v0.1.1)'
10
+ required: true
11
+ type: string
12
13
permissions:
14
contents: write
@@ -76,6 +81,7 @@ jobs:
76
81
- name: Upload Release Asset
77
82
uses: softprops/action-gh-release@v1
78
83
with:
84
+ tag_name: ${{ github.event.release.tag_name || github.event.inputs.tag_name }}
79
85
files: ${{ matrix.asset_name }}
80
86
fail_on_unmatched_files: true
87
generate_release_notes: true
0 commit comments