Skip to content

Commit bca0d8f

Browse files
committed
👷 add release workflow on tag push
1 parent c8dcf28 commit bca0d8f

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:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v4
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)