From 34f3221b1775c85fc3b3fe02ccf9126598335fe7 Mon Sep 17 00:00:00 2001 From: Ava Silver Date: Tue, 27 Jan 2026 14:50:08 -0500 Subject: [PATCH] chore: fix publishing workflow --- scripts/publish_prod.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/publish_prod.sh b/scripts/publish_prod.sh index 4634c611..f0c555ee 100755 --- a/scripts/publish_prod.sh +++ b/scripts/publish_prod.sh @@ -90,7 +90,9 @@ fi echo echo "Bumping the version number and committing the changes" -yarn version --new-version "$VERSION" +yarn version "$VERSION" +git commit -am "v$VERSION" +git tag "v$VERSION" yarn build