Skip to content

Commit

Permalink
build(repo): Don't escape command
Browse files Browse the repository at this point in the history
  • Loading branch information
tmilewski committed Oct 23, 2023
1 parent 4664888 commit e2d0f1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e2d0f1f

Please sign in to comment.