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 4650521 commit 47a3c80Copy full SHA for 47a3c80
.github/workflows/s3.yaml
@@ -20,15 +20,14 @@ jobs:
20
- name: Create and push tag if on prod branch
21
if: github.ref == 'refs/heads/prod'
22
run: |
23
- git remote set-url origin https://${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}
24
VERSION=$(poetry version -s)
25
git tag $VERSION
26
git push origin $VERSION
27
28
- name: Create and push test tag if on test branch
29
if: github.ref == 'refs/heads/test'
30
31
+ VERSION=$(poetry version -s)
32
git tag testvers
33
git push origin testvers
34
0 commit comments