From d054a8c41c1f6705f31c7c7f2ef9a02d60764694 Mon Sep 17 00:00:00 2001 From: Luis Covarrubias Date: Thu, 6 Nov 2025 16:17:54 -0800 Subject: [PATCH] feat: simplify release workflow Remove lerna publishing in favor of direct npm publish from WASM-UTXO package. Remove npm configuration that's no longer needed. Co-authored-by: llm-git Ticket: BTC-0 --- .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