Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ publish-sdk-js:
./scripts/validate-release.sh
pnpm install
pnpm run build
pnpm publish --no-git-checks
pnpm publish --no-git-checks --provenance

# This is the only method I could find to install a package without explicitly
# adding a dependency or modifying lock files.
Expand Down
2 changes: 1 addition & 1 deletion js/scripts/publish-prerelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ echo ""
# In CI, just publish. Locally, ask for confirmation
if [ -n "${CI:-}" ] || [ -n "${GITHUB_ACTIONS:-}" ]; then
# Running in CI - publish without confirmation
pnpm publish --tag "$DIST_TAG" --no-git-checks
pnpm publish --tag "$DIST_TAG" --no-git-checks --provenance
else
# Running locally - ask for confirmation
read -p "Ready to publish version $NEW_VERSION to npm with tag @$DIST_TAG? (y/N) " -n 1 -r
Expand Down
Loading