From c9bbe7186984d29456c25ef1460350c968d4999c Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Fri, 19 Dec 2025 21:45:06 +0100 Subject: [PATCH] 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. --- .github/workflows/bump-version.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-version.yml b/.github/workflows/bump-version.yml index aae8bf0..101d6df 100644 --- a/.github/workflows/bump-version.yml +++ b/.github/workflows/bump-version.yml @@ -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