Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,12 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git tag -f latest ${{ steps.version.outputs.tag }}
# Create the version tag locally first
git tag ${{ steps.version.outputs.tag }}
# Point latest to the current commit (same as the version tag)
git tag -f latest
# Push both tags
git push origin ${{ steps.version.outputs.tag }}
git push -f origin latest

- name: Build Summary
Expand Down
Loading