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:
@@ -125,7 +125,8 @@ jobs:
|
|||||||
- name: Push tags
|
- name: Push tags
|
||||||
if: steps.bump.outputs.bumped == 'true'
|
if: steps.bump.outputs.bumped == 'true'
|
||||||
run: |
|
run: |
|
||||||
git push --follow-tags
|
git push
|
||||||
|
git push --tags
|
||||||
echo "Pushed tags for components:${{ steps.bump.outputs.components }}"
|
echo "Pushed tags for components:${{ steps.bump.outputs.components }}"
|
||||||
|
|
||||||
- name: Summary
|
- name: Summary
|
||||||
|
|||||||
Reference in New Issue
Block a user