File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 2020 - name : Create and push tag if on prod branch
2121 if : github.ref == 'refs/heads/prod'
2222 run : |
23- git config --local user.email "[email protected] " 24- git config --local user.name "GitHub Action"
2523 git remote set-url origin https://${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}
2624 VERSION=$(poetry version -s)
2725 git tag $VERSION
3028 - name : Create and push test tag if on test branch
3129 if : github.ref == 'refs/heads/test'
3230 run : |
33- git config --local user.email "[email protected] " 34- git config --local user.name "GitHub Action"
3531 git remote set-url origin https://${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}
3632 git tag testvers
3733 git push origin testvers
You can’t perform that action at this time.
0 commit comments