Skip to content

Commit

Permalink
chore: Add GitHub Actions workflow for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviodelgrosso committed May 29, 2024
1 parent cea7168 commit 76b9f4c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/releases.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- v[0-9]+.*

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
# (optional) Path to changelog.
# changelog: CHANGELOG.md
# (required) GitHub token for creating GitHub Releases.
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 76b9f4c

Please sign in to comment.