From e2d0f1f05dbb76e9459cc3e7d81a583480578f72 Mon Sep 17 00:00:00 2001 From: Tom Milewski Date: Mon, 23 Oct 2023 13:13:04 -0400 Subject: [PATCH] build(repo): Don't escape command --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe74c7a5d96..119b85c9646 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ env: TURBO_ARGS: --output-logs=new-only --cache-dir=./.turbo-cache --concurrency=8 TURBO_TOKEN: ${{ secrets.TEST_TURBO_TOKEN }} TURBO_TEAM: ${{ secrets.TEST_TURBO_TEAM }} - TURBO_REMOTE_ONLY: true + TURBO_REMOTE_ONLY: false TURBO_CONCURRENCY: 8 # Available CPU in RUNNER_LARGE concurrency: @@ -167,7 +167,7 @@ jobs: - name: Publish to Verdaccio run: | - if [ \"$(npm config get registry)\" = \"https://registry.npmjs.org/\" ]; then echo 'Error: Using default registry' && exit 1; else npx turbo build ${{ env.TURBO_ARGS }} && changeset publish --no-git-tag; fi" + if [ "$(npm config get registry)" = "https://registry.npmjs.org/" ]; then echo 'Error: Using default registry' && exit 1; else npx turbo build ${{ env.TURBO_ARGS }} && changeset publish --no-git-tag; fi - name: Install @clerk/backend in /integration working-directory: ./integration