Skip to content

Commit

Permalink
ci: swapping npx for yarn in publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
voodooGQ committed Mar 13, 2024
1 parent 7c18dda commit db66403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ jobs:
if: needs.setup.outputs.postfix == 'production' # Only create package on `main`
steps:
- name: Lerna Boostrap
run: npx lerna bootstrap --ci
run: yarn lerna bootstrap --ci

- name: Lerna Publish
run: NODE_OPTIONS=--openssl-legacy-provider npx lerna publish --registry github --yes
run: NODE_OPTIONS=--openssl-legacy-provider yarn lerna publish --registry github --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.ACCESS_TOKEN }}

0 comments on commit db66403

Please sign in to comment.