fix(ci): push all tags explicitly in bump workflow

The --follow-tags flag only pushes annotated tags by default.
Commitizen creates lightweight tags, so we need to explicitly push
all tags with --tags to ensure version tags are pushed to trigger
release workflows.
This commit is contained in:
Chris Coutinho
2025-12-19 21:45:06 +01:00
parent 00edb273cd
commit c9bbe71869
+2 -1
View File
@@ -125,7 +125,8 @@ jobs:
- name: Push tags
if: steps.bump.outputs.bumped == 'true'
run: |
git push --follow-tags
git push
git push --tags
echo "Pushed tags for components:${{ steps.bump.outputs.components }}"
- name: Summary