From 9b043cf2c1429ff9685d18bc83e1b2f03895d54d Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 30 Jan 2022 17:03:19 +0000 Subject: [PATCH] [CI] Allow manual specifying tag in packaging workflow --- .github/workflows/cd.yml | 5 +++++ 1 file changed, 5 insertions(+) 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