From 6f961c5ec2873fc307224a0e8ace52e7c24eff52 Mon Sep 17 00:00:00 2001 From: Razvan Dimescu Date: Fri, 10 Apr 2026 09:03:03 +0300 Subject: [PATCH] fix: push only specific tag when releaseing a new version --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index d4ee882..b4165ea 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -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."