Skip to content

Commit 5c74370

Browse files
committed
chore: fix node sdk release
1 parent 8abdaad commit 5c74370

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/release-sdk.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,16 +90,15 @@ jobs:
9090

9191
- name: Publish Node SDK
9292
if: ${{ !inputs.dry-run }}
93-
run: pnpm --prefix packages/sdk/langs/node publish --access public --tag latest --no-git-checks
93+
run: npm publish --access public --tag latest
94+
working-directory: packages/sdk/langs/node
9495
env:
9596
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
9697

9798
- name: Publish Node SDK (dry run)
9899
if: ${{ inputs.dry-run }}
99-
run: |
100-
echo "Would publish the following Node package:"
101-
pnpm --prefix packages/sdk/langs/node pack
102-
ls -la packages/sdk/langs/node/*.tgz
100+
run: npm pack --dry-run
101+
working-directory: packages/sdk/langs/node
103102

104103
# ---------------------------------------------------------------
105104
# Python SDK

0 commit comments

Comments
 (0)