We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f5722a commit 33d05ccCopy full SHA for 33d05cc
.github/workflows/release.yml
@@ -4,6 +4,12 @@ on:
4
push:
5
tags:
6
- "*"
7
+ workflow_dispatch: # Add this to enable manual triggers
8
+ inputs: # Optional: add inputs if you want to parameterize manual runs
9
+ tag_name: # Optional: allow specifying a tag when running manually
10
+ description: "Tag to release"
11
+ required: false
12
+ type: string
13
14
jobs:
15
release:
0 commit comments