Skip to content

Commit fcaf3d2

Browse files
committed
chore: fix sdk release dry run
1 parent a39cb68 commit fcaf3d2

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release-sdk.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,10 @@ jobs:
9696

9797
- name: Publish Node SDK (dry run)
9898
if: ${{ inputs.dry-run }}
99-
run: pnpm --prefix packages/sdk/langs/node publish --access public --tag latest --no-git-checks --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
100103
101104
# ---------------------------------------------------------------
102105
# Python SDK

0 commit comments

Comments
 (0)