From fe95a1b66e532717976d3ccf3e8cd97653df29c2 Mon Sep 17 00:00:00 2001 From: Celestial Date: Sun, 12 Apr 2026 15:45:15 +0200 Subject: [PATCH] fix(ci): publish SDK packages with shell pnpm --- .github/workflows/release-typescript-sdk.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-typescript-sdk.yml b/.github/workflows/release-typescript-sdk.yml index 0ff821f..bb0d453 100644 --- a/.github/workflows/release-typescript-sdk.yml +++ b/.github/workflows/release-typescript-sdk.yml @@ -197,7 +197,7 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} shell: bash - run: node ../../scripts/publish-package.mjs + run: pnpm publish --access public --no-git-checks - name: Pack native runtime package if: needs.verify.outputs.publish_release != 'true' @@ -351,7 +351,7 @@ jobs: env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} shell: bash - run: node scripts/publish-package.mjs + run: pnpm publish --access public --no-git-checks - name: Pack TypeScript SDK if: needs.verify.outputs.publish_release != 'true'