Skip to content

Commit 34f9549

Browse files
committed
feat: auto release
1 parent 6872f64 commit 34f9549

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/release.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: 'release'
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
create_release:
13+
name: 'create release'
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: create github release
17+
uses: softprops/action-gh-release@v2
18+
with:
19+
tag_name: ${{ github.ref_name }}
20+
name: ${{ github.ref_name }}
21+
generate_release_notes: true

0 commit comments

Comments
 (0)