[CI] Allow manual specifying tag in packaging workflow

This commit is contained in:
Calum Lind 2022-01-30 17:03:19 +00:00
parent 1cd005c272
commit 9b043cf2c1
No known key found for this signature in database
GPG Key ID: 90597A687B836BA3
1 changed files with 5 additions and 0 deletions

View File

@ -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