Skip to content

Commit

Permalink
github: add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mintyfrankie committed Oct 9, 2024
1 parent d136705 commit b5be29e
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

on:
push:
tags:
- 'v*.*.*'

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true

0 comments on commit b5be29e

Please sign in to comment.