From 710fc2f4ab32c75504dcb457905c56752eeaca5e Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 31 Jul 2026 02:35:00 -0400 Subject: [PATCH] Publish crate before release tag --- bin/publish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/publish b/bin/publish index 3fd297f..e714a4f 100755 --- a/bin/publish +++ b/bin/publish @@ -22,7 +22,7 @@ cd "$TMP_DIR" VERSION=$(sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1) git tag -a "$VERSION" -m "Release $VERSION" -git push origin "$VERSION" cargo publish +git push origin "$VERSION" cd "$ROOT_DIR"