We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aaf6b18 + 0412788 commit 40bee98Copy full SHA for 40bee98
.github/workflows/bump-version.yml
@@ -0,0 +1,22 @@
1
+name: Bump version
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ if: ${{ github.actor != 'dependabot[bot]' }}
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Bump version and push tag
13
+ id: tag_version
14
+ uses: mathieudutour/[email protected]
15
+ with:
16
+ github_token: ${{ secrets.GITHUB_TOKEN }}
17
+ - name: Create a GitHub release
18
+ uses: ncipollo/release-action@v1
19
20
+ tag: ${{ steps.tag_version.outputs.new_tag }}
21
+ name: Release ${{ steps.tag_version.outputs.new_tag }}
22
+ generateReleaseNotes: true
0 commit comments