Skip to content

Commit 906fc77

Browse files
committedFeb 17, 2025··
Add initial releases workflow
1 parent 17b5598 commit 906fc77

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
 

‎.github/workflows/release.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
tags-ignore:
8+
- 'v1'
9+
10+
jobs:
11+
create_release:
12+
runs-on: ubuntu-latest
13+
name: Create Release
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Create Release
18+
id: create_release
19+
uses: ncipollo/release-action@v1
20+
with:
21+
allowUpdates: true
22+
draft: true
23+
generateReleaseNotes: true

0 commit comments

Comments
 (0)
Please sign in to comment.