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 638ea9b commit e4bd6f1Copy full SHA for e4bd6f1
1 file changed
.github/workflows/manage-releases.yml
@@ -26,7 +26,11 @@ on:
26
push:
27
tags:
28
- '*1984'
29
-
+ workflow_dispatch:
30
+ inputs:
31
+ tor_tag:
32
+ description: 'Tag to process (e.g., 13.5.0.1984)'
33
+ required: true
34
jobs:
35
release:
36
name: Create / update current release
@@ -41,7 +45,8 @@ jobs:
41
45
- name: Derive version and pre-release flag
42
46
id: meta
43
47
run: |
44
- TOR_TAG="${GITHUB_REF_NAME}"
48
+ # Use workflow_dispatch input if provided, otherwise use the pushed tag
49
+ TOR_TAG="${{ github.event.inputs.tor_tag || github.ref_name }}"
50
echo "tor_tag=${TOR_TAG}" >> "$GITHUB_OUTPUT"
51
52
# Strip the Tor suffix to obtain the regular version.
0 commit comments