Skip to content

Commit

Permalink
ci: automate github releases
Browse files Browse the repository at this point in the history
  • Loading branch information
k9withabone committed Apr 5, 2024
1 parent 2dc7206 commit f03ad42
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

permissions:
contents: write

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

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Create Release
uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
branch: main
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f03ad42

Please sign in to comment.