Skip to content

Commit

Permalink
changelog workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ModProg committed Aug 27, 2024
1 parent afffef3 commit 5c19727
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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:
changelog: CHANGELOG.md
branch: main
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5c19727

Please sign in to comment.