summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2022-01-30 17:03:19 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2022-01-30 17:03:33 +0000
commit9b043cf2c1429ff9685d18bc83e1b2f03895d54d (patch)
tree3617c58566c1936a7c74b62359295c0920b2aa78
parent1cd005c27251a4350429344e73c8a31ca8d6331a (diff)
downloaddeluge-9b043cf2c1429ff9685d18bc83e1b2f03895d54d.tar.gz
deluge-9b043cf2c1429ff9685d18bc83e1b2f03895d54d.tar.bz2
deluge-9b043cf2c1429ff9685d18bc83e1b2f03895d54d.zip
[CI] Allow manual specifying tag in packaging workflow
-rw-r--r--.github/workflows/cd.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index 030aa3fd4..b1a0d0609 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -12,6 +12,10 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
+ inputs:
+ ref:
+ description: "Enter a tag or commit to package"
+ default: ""
jobs:
windows_package:
@@ -28,6 +32,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
+ ref: ${{ github.event.inputs.ref }}
- name: Set up Python
uses: actions/setup-python@v2