Skip to content

Commit

Permalink
Use --no-bail
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastijankuzner committed Aug 30, 2024
1 parent 65b3e16 commit 2a2a5cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Publish to NPM
run: |
pnpm --no-bail run release -- --publish-branch=evm --tag=evm --no-git-checks
pnpm run release -- --publish-branch=evm --tag=evm --no-git-checks
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"pg:reset": "pnpm run pg:down -v && pnpm run pg:up",
"pg:up": "docker-compose -f docker/local/docker-compose.yml up -d",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./packages/**/*.{ts,js,json,md}\" \"./.github/**/*.{json,yml,yaml}\"",
"release": "lerna run release --concurrency=1",
"release": "lerna --no-bail run release --concurrency=1",
"setup": "pnpm install && pnpm run build",
"sort": "sort-package-json \"package.json\" \"packages/*/package.json\"",
"test:integration": "lerna run test:integration --parallel",
Expand Down

0 comments on commit 2a2a5cc

Please sign in to comment.