Skip to content

Commit

Permalink
chore: create release action
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Apr 4, 2024
1 parent 0177d93 commit 93236cc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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"

permissions:
contents: write

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

0 comments on commit 93236cc

Please sign in to comment.