We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a64411 commit 09d00cdCopy full SHA for 09d00cd
1 file changed
.github/workflows/release.yml
@@ -0,0 +1,19 @@
1
+name: Release
2
+on:
3
+ push:
4
+ branches-ignore:
5
+ - "**"
6
+ tags:
7
+ - "v*.*.*"
8
+jobs:
9
+ update-semver:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ - uses: haya14busa/action-update-semver@v1
14
+ with:
15
+ major_version_tag_only: true
16
+ - name: Create release
17
+ uses: softprops/action-gh-release@v1
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments