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 00c8937 commit e08c943Copy full SHA for e08c943
.github/workflows/build-and-test.yml
@@ -20,9 +20,9 @@ jobs:
20
if: steps.install-ucm.outputs.ucm-version != ''
21
run: echo ${{ steps.install-ucm.outputs.ucm-version }}
22
- name: Tag version
23
- if: ${{ github.event_name == 'push' }}
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/head/main'}}
24
run: |
25
echo "Tagging version: ${{ steps.install-ucm.outputs.ucm-version}}"
26
- # git tag v${{ steps.install-ucm.outputs.ucm-version }}
27
- # git tag --force v1 v${{ steps.install-ucm.outputs.ucm-version }}
28
- # git push origin --tags
+ git tag v${{ steps.install-ucm.outputs.ucm-version }}
+ git tag --force v1 v${{ steps.install-ucm.outputs.ucm-version }}
+ git push origin --tags
0 commit comments