Skip to content

Commit 81bf84e

Browse files
committed
added release workflow
1 parent 3d6f04c commit 81bf84e

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v[0-9]+.[0-9]+.[0-9]+"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
update-major-tag:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: nowactions/update-majorver@v1
16+
17+
release:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: softprops/action-gh-release@v3
21+
with:
22+
generate_release_notes: true

0 commit comments

Comments
 (0)