Skip to content

Commit 5acb18a

Browse files
authored
ci: add github release workflow
1 parent 324ab7f commit 5acb18a

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/release.yml

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

0 commit comments

Comments
 (0)