From a3db40a950c2d6b82bc030065bf3a2d2e0b0ad01 Mon Sep 17 00:00:00 2001 From: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> Date: Mon, 23 Oct 2023 19:47:27 -0400 Subject: [PATCH] Setup dispatch --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d58d0bc41..8b01decc8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,6 +1,12 @@ name: Release on: + workflow_dispatch: + inputs: + tag: + required: true + type: string + description: 'Which tag do we want to retry? this should begin with v, and match exactly one of the tags present on the repo' push: tags: - 'v*' @@ -12,6 +18,8 @@ jobs: steps: - uses: actions/checkout@v4 + with: + ref: ${{ github.events.inputs.tag || github.ref }} - uses: wyvox/action-setup-pnpm@v3 with: node-registry-url: "https://registry.npmjs.org"