Skip to content

Commit 42259b1

Browse files
authored
Create create-release.yml
1 parent 8c6248c commit 42259b1

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

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

0 commit comments

Comments
 (0)