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.
2 parents 5a743dc + 8b68dca commit f33e7ceCopy full SHA for f33e7ce
.github/workflows/build-release.yml
@@ -97,7 +97,12 @@ jobs:
97
run: |
98
git config user.name "github-actions[bot]"
99
git config user.email "github-actions[bot]@users.noreply.github.com"
100
- git tag -f latest ${{ steps.version.outputs.tag }}
+ # Create the version tag locally first
101
+ git tag ${{ steps.version.outputs.tag }}
102
+ # Point latest to the current commit (same as the version tag)
103
+ git tag -f latest
104
+ # Push both tags
105
+ git push origin ${{ steps.version.outputs.tag }}
106
git push -f origin latest
107
108
- name: Build Summary
0 commit comments