We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8abdaad commit 5c74370Copy full SHA for 5c74370
1 file changed
.github/workflows/release-sdk.yml
@@ -90,16 +90,15 @@ jobs:
90
91
- name: Publish Node SDK
92
if: ${{ !inputs.dry-run }}
93
- run: pnpm --prefix packages/sdk/langs/node publish --access public --tag latest --no-git-checks
+ run: npm publish --access public --tag latest
94
+ working-directory: packages/sdk/langs/node
95
env:
96
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
97
98
- name: Publish Node SDK (dry run)
99
if: ${{ inputs.dry-run }}
- 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
+ run: npm pack --dry-run
103
104
# ---------------------------------------------------------------
105
# Python SDK
0 commit comments