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.
1 parent 56bfa64 commit 7a68235Copy full SHA for 7a68235
.github/workflows/tag-release.yml
@@ -1,5 +1,5 @@
1
# @author Madhavan Sridharan
2
-name: Create Version Tag
+name: Prepare Version Tag
3
4
on:
5
workflow_dispatch:
@@ -32,7 +32,10 @@ jobs:
32
git config user.name "GitHub Actions"
33
git config user.email "[email protected]"
34
35
- - name: Bump version and tag
+ - name: Create version bump branch
36
+ id: create_branch
37
run: |
- npm version ${{ github.event.inputs.release_type }} -m "chore(release): %s"
38
- git push origin main --follow-tags
+ git fetch origin main
39
+ git checkout -b release/bump-tag-version origin/main
40
+ npm version ${{ github.event.inputs.release_type }} -m "chore(release): bump tag version to %s"
41
+ git push origin -u release/bump-tag-version --follow-tags
0 commit comments