We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9116136 + 1b83608 commit 4b02035Copy full SHA for 4b02035
.github/workflows/update-version.yml
@@ -18,6 +18,9 @@ jobs:
18
steps:
19
- name: Checkout code
20
uses: actions/checkout@v2
21
+
22
+ - name: Create new branch
23
+ run: git checkout -b release/${{ github.event.inputs.packageVersion }}
24
25
- name: Update Package Version
26
run: |
@@ -35,4 +38,5 @@ jobs:
35
38
git config user.email github-actions@github.com
36
39
git commit -m "updated version" | exit 0
37
40
git tag ${{ github.event.inputs.packageVersion }}
- git push & git push --tags
41
+ git push --set-upstream origin release/${{ github.event.inputs.packageVersion }}
42
+ git push --tags
0 commit comments