Skip to content

Commit

Permalink
Allow re-running
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Oct 31, 2023
1 parent e3c4dbe commit 657496b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ on:
push:
tags:
- 'v*'
# Manual run
workflow_dispatch:
inputs:
tag:
required: true
type: string
description: 'Tag to release'

jobs:
release:
Expand All @@ -12,6 +19,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.tag || github.ref_name }}
- uses: actions/setup-node@v4
with:
node-version: 14
Expand Down

0 comments on commit 657496b

Please sign in to comment.