We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d054a8c commit 76d6a0bCopy full SHA for 76d6a0b
.github/workflows/publish.yml
@@ -66,6 +66,11 @@ jobs:
66
git config user.name "github-actions[bot]"
67
git config user.email "github-actions[bot]@users.noreply.github.com"
68
69
+ - name: Configure NPM
70
+ run: |
71
+ echo "workspaces-update = false" >> .npmrc
72
+ echo "@bitgo:registry=https://registry.npmjs.org" >> .npmrc
73
+
74
- name: Install Packages
75
run: npm ci --workspaces --include-workspace-root
76
@@ -75,6 +80,7 @@ jobs:
80
- name: Unit Test
81
run: npm --workspaces test
77
82
78
- - name: Release (npm publish via OIDC)
79
- working-directory: packages/wasm-utxo
- run: npm publish
83
+ - name: Release
84
+ run: npx lerna publish --yes --no-push --loglevel verbose -- --loglevel verbose
85
+ env:
86
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments