From 58fd4875aa3fc3d7580c40648bee79b35e639563 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Mon, 17 Jun 2024 16:39:07 -0400 Subject: [PATCH] Fix custom publish (#404) --- scripts/ci-publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci-publish.sh b/scripts/ci-publish.sh index c1e69d55b..07ad6f168 100755 --- a/scripts/ci-publish.sh +++ b/scripts/ci-publish.sh @@ -14,7 +14,7 @@ if [ -f "${SCRIPT_DIR}/../.changeset/pre.json" ]; then MODE=$($JQ --raw-output .mode "${SCRIPT_DIR}/../.changeset/pre.json") if [ "$MODE" == "pre" ]; then - TAG=$(JQ --raw-output .tag "${SCRIPT_DIR}/../.changeset/pre.json") + TAG=$($JQ --raw-output .tag "${SCRIPT_DIR}/../.changeset/pre.json") else echo "Invalid mode for releasing: $MODE" exit 100