Skip to content

Commit 76d6a0b

Browse files
committed
Revert "feat: simplify release workflow"
This reverts commit d054a8c.
1 parent d054a8c commit 76d6a0b

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/publish.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ jobs:
6666
git config user.name "github-actions[bot]"
6767
git config user.email "github-actions[bot]@users.noreply.github.com"
6868
69+
- name: Configure NPM
70+
run: |
71+
echo "workspaces-update = false" >> .npmrc
72+
echo "@bitgo:registry=https://registry.npmjs.org" >> .npmrc
73+
6974
- name: Install Packages
7075
run: npm ci --workspaces --include-workspace-root
7176

@@ -75,6 +80,7 @@ jobs:
7580
- name: Unit Test
7681
run: npm --workspaces test
7782

78-
- name: Release (npm publish via OIDC)
79-
working-directory: packages/wasm-utxo
80-
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

Comments
 (0)