We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa57e9 commit dc42f23Copy full SHA for dc42f23
1 file changed
.github/workflows/release.yml
@@ -4,6 +4,12 @@ on:
4
push:
5
tags:
6
- 'v*'
7
+ workflow_dispatch:
8
+ inputs:
9
+ tag:
10
+ description: 'Release tag (e.g. v0.1.2)'
11
+ required: true
12
+ default: 'v0.1.0'
13
14
jobs:
15
release:
@@ -68,8 +74,8 @@ jobs:
68
74
TAURI_TARGET: x86_64-pc-windows-gnu
69
75
with:
70
76
args: --target x86_64-pc-windows-gnu
71
- tagName: ${{ github.ref_name }}
72
- releaseName: '⚡ Process Manager ${{ github.ref_name }}'
77
+ tagName: ${{ github.event.inputs.tag || github.ref_name }}
78
+ releaseName: '⚡ Process Manager ${{ github.event.inputs.tag || github.ref_name }}'
73
79
releaseBody: |
80
## What's Changed
81
0 commit comments