fix(release): publish verified npm tarballs from dirty trees

This commit is contained in:
Peter Steinberger 2026-06-12 01:36:34 -07:00
parent 0f66ff5c24
commit 231fa48370
No known key found for this signature in database

View File

@ -524,9 +524,9 @@ if [ "$PUBLISH_NPM" = true ]; then
if [[ $REPLY =~ ^[Yy]$ ]]; then
if [ -n "$NPM_TAG" ]; then
pnpm publish "$NPM_PACKAGE_PATH" --tag "$NPM_TAG"
pnpm publish "$NPM_PACKAGE_PATH" --tag "$NPM_TAG" --no-git-checks
else
pnpm publish "$NPM_PACKAGE_PATH"
pnpm publish "$NPM_PACKAGE_PATH" --no-git-checks
fi
echo -e "${GREEN}✅ Published to npm!${NC}"
else