We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf859d commit 78ab085Copy full SHA for 78ab085
1 file changed
.github/workflows/test-workflow-bump-prod.yml
@@ -0,0 +1,21 @@
1
+name: Bump version
2
+on:
3
+ push:
4
+ branches:
5
+ - test-prod
6
+jobs:
7
+ run:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Bump version and push tag
12
+ id: tag_version
13
+ uses: mathieudutour/github-tag-action@v6.1
14
+ with:
15
+ github_token: ${{ secrets.GITHUB_TOKEN }}
16
+ - name: Create a GitHub release
17
+ uses: ncipollo/release-action@v1
18
19
+ tag: ${{ steps.tag_version.outputs.new_tag }}
20
+ name: Release ${{ steps.tag_version.outputs.new_tag }}
21
+ body: ${{ steps.tag_version.outputs.changelog }}
0 commit comments