fix: push only specific tag when releaseing a new version

This commit is contained in:
Razvan Dimescu
2026-04-10 09:03:03 +03:00
parent 20bf14e91c
commit 6f961c5ec2

View File

@@ -37,7 +37,7 @@ cargo update --workspace
git add Cargo.toml Cargo.lock
git commit -m "chore: bump version to $VERSION"
git tag "$TAG"
git push origin main --tags
git push origin main "$TAG"
echo
echo "Released $TAG — GitHub Actions will build, publish to crates.io, and create the release."