diff options
| author | seth <[email protected]> | 2024-05-21 19:53:34 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-05-21 20:07:55 -0400 |
| commit | e8615964144b92d910fca165debcb68a0ffecf88 (patch) | |
| tree | 6307a7a79fb3b1b8458554d3cb9ccf09bb2fad05 /.github/workflows/publish.yaml | |
initial commitv0.1.0
Diffstat (limited to '.github/workflows/publish.yaml')
| -rw-r--r-- | .github/workflows/publish.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..a04230b --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,24 @@ +name: Publish + +on: + release: + types: [ released ] + workflow_dispatch: + inputs: + tag_name: + description: "Existing tag to publish" + required: true + +jobs: + publish: + name: Publish action + + runs-on: ubuntu-latest + + permissions: + contents: write + + steps: + - uses: actions/publish-action@f784495ce78a41bac4ed7e34a73f0034015764bb # v0.3.0 + with: + source-tag: ${{ inputs.tag_name || github.event.release.tag_name }} |
