We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37625be commit bb87dc1Copy full SHA for bb87dc1
1 file changed
.github/workflows/release.yml
@@ -2,6 +2,13 @@ name: Build
2
3
on:
4
workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: 'Version tag (e.g. v1.0.0)'
8
+ required: true
9
+
10
+env:
11
+ FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
12
13
permissions:
14
contents: write
@@ -61,5 +68,6 @@ jobs:
61
68
- name: Create GitHub Release
62
69
uses: softprops/action-gh-release@v2
63
70
with:
71
+ tag_name: ${{ github.event.inputs.version }}
64
72
files: artifacts/*
65
73
generate_release_notes: true
0 commit comments