Skip to content

Commit 9a38d0a

Browse files
pmarmaroliclaude
andcommitted
ci: push tag explicitly instead of --follow-tags
--follow-tags only pushes annotated tags; our lightweight tag was never reaching GitHub, causing gh release create to fail with "tag exists locally but has not been pushed". Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 7780bbe commit 9a38d0a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/auto-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ jobs:
6161
git add pyproject.toml
6262
git commit -m "chore: bump version to ${{ steps.version.outputs.version }}"
6363
git tag "v${{ steps.version.outputs.version }}"
64-
git push origin master --follow-tags
64+
git push origin master
65+
git push origin "v${{ steps.version.outputs.version }}"
6566
gh release create "v${{ steps.version.outputs.version }}" dist/* \
6667
--title "vocametrix ${{ steps.version.outputs.version }}" \
6768
--generate-notes

0 commit comments

Comments
 (0)