Skip to content

Commit

Permalink
Merge pull request #1453 from glimmerjs/workflow-dispatch-setup
Browse files Browse the repository at this point in the history
Setup dispatch / manual re-running of release workflow
  • Loading branch information
NullVoxPopuli committed Oct 23, 2023
2 parents 34c266d + a3db40a commit a8321b9
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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*'
Expand All @@ -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"
Expand Down

0 comments on commit a8321b9

Please sign in to comment.