Skip to content

Commit f6495a0

Browse files
Add GitHub Actions workflow for automated release creation
This workflow triggers on tag pushes matching the pattern "v*". It includes steps to check out the repository and create a GitHub release with automatically generated release notes.
1 parent 56460a5 commit f6495a0

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags: ["v*"]
6+
7+
permissions:
8+
contents: write
9+
10+
jobs:
11+
release:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v6
15+
16+
- name: Create GitHub Release
17+
uses: softprops/action-gh-release@v2
18+
with:
19+
generate_release_notes: true

0 commit comments

Comments
 (0)