There was an error while loading. Please reload this page.
1 parent d2490e2 commit 6d0fff0Copy full SHA for 6d0fff0
1 file changed
.github/workflows/publish_binaries.yml
@@ -3,6 +3,11 @@ name: publish binaries
3
on:
4
release:
5
types: [published]
6
+ workflow_dispatch:
7
+ inputs:
8
+ tag:
9
+ required: true
10
+ type: string
11
12
permissions: {}
13
@@ -61,4 +66,5 @@ jobs:
61
66
62
67
- run: gh release upload "$tag" dist/${{ matrix.asset_name }}
63
68
env:
64
- tag: ${{ github.event.release.tag_name }}
69
+ GH_TOKEN: ${{ github.token }}
70
+ tag: ${{ inputs.tag || github.event.release.tag_name }}
0 commit comments