Skip to content

Commit

Permalink
ci: add tag-based Release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lalver1 committed Jul 11, 2024
1 parent a3a5341 commit 1577ac1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Create GitHub release

on:
push:
tags:
# release tags
- "202[3-9].[0-9][0-9].[0-9]+"

jobs:
release:
runs-on: ubuntu-latest
permissions:
# https://github.com/softprops/action-gh-release#permissions
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Release
uses: softprops/action-gh-release@v2
with:
prerelease: false
generate_release_notes: true

0 comments on commit 1577ac1

Please sign in to comment.