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 c747dbe commit 2c213c6Copy full SHA for 2c213c6
.github/workflows/s3.yaml
@@ -26,6 +26,14 @@ jobs:
26
git config --local user.name "GitHub Action"
27
git tag $VERSION
28
git push https://${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}.git $VERSION
29
+ elif: github.ref == 'refs/heads/test'
30
+ run: |
31
+ git fetch --unshallow
32
+ VERSION=$(poetry version -s)
33
+ git config --local user.email "[email protected]"
34
+ git config --local user.name "GitHub Action"
35
+ git tag testvers
36
+ git push https://${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}.git testvers
37
38
- name: Install Pandoc
39
run: |
0 commit comments