From e1bef8ea048e6da8a9f0717036d5b1648a2d94e6 Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Thu, 6 Nov 2025 16:54:40 -0800 Subject: [PATCH 1/2] Reapply "feat: simplify release workflow" This reverts commit 76d6a0bc84d0e1a82a6ab3462c0d383e4f2abd2e. --- .github/workflows/publish.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8042fb75..138056d7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -66,11 +66,6 @@ jobs: git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com" - - name: Configure NPM - run: | - echo "workspaces-update = false" >> .npmrc - echo "@bitgo:registry=https://registry.npmjs.org" >> .npmrc - - name: Install Packages run: npm ci --workspaces --include-workspace-root @@ -80,7 +75,6 @@ jobs: - name: Unit Test run: npm --workspaces test - - name: Release - run: npx lerna publish --yes --no-push --loglevel verbose -- --loglevel verbose - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Release (npm publish via OIDC) + working-directory: packages/wasm-utxo + run: npm publish From 4d99c8246cd8eef41f342f0a0947a05766919d74 Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Thu, 6 Nov 2025 16:54:55 -0800 Subject: [PATCH 2/2] feat: bump wasm-utxo package version to 0.0.2 Ticket: BTC-0 --- packages/wasm-utxo/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/wasm-utxo/package.json b/packages/wasm-utxo/package.json index 18e95d5e..fe678c55 100644 --- a/packages/wasm-utxo/package.json +++ b/packages/wasm-utxo/package.json @@ -1,7 +1,7 @@ { "name": "@bitgo/wasm-utxo", "description": "WebAssembly wrapper for rust-bitcoin (beta)", - "version": "0.0.1", + "version": "0.0.2", "repository": { "type": "git", "url": "git+https://github.com/BitGo/BitGoWASM"