Skip to content

Commit

Permalink
chore: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Mar 12, 2024
1 parent b2075bd commit 546b55a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "tagged-release"

on:
create

jobs:
tagged-release:
# Don't run on releases/tags/* which causes recursive behaviour
if: startsWith(github.ref, 'refs/tags/')
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GH_TOKEN }}"
automatic_release_tag: "${{ github.ref_name }}"
prerelease: false
files: "*"

0 comments on commit 546b55a

Please sign in to comment.