From 07a5f505d9d6bfc8772a28ea22ba0bb140070e32 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Sat, 17 Aug 2024 00:12:24 -0300 Subject: [PATCH] fix(ci): run pnpm publish with --no-git-checks --- .changes/config.json | 4 ++-- tooling/api/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.changes/config.json b/.changes/config.json index 8c3325ff7..37cddf30c 100644 --- a/.changes/config.json +++ b/.changes/config.json @@ -113,8 +113,8 @@ "pipe": true }, { - "command": "pnpm publish --access public --loglevel silly --tag next --provenance", - "dryRunCommand": "npm publish --dry-run --access public --provenance", + "command": "pnpm publish --access public --loglevel silly --tag next --provenance --no-git-checks", + "dryRunCommand": "npm publish --dry-run --access public --provenance --no-git-checks", "pipe": true }, { diff --git a/tooling/api/package.json b/tooling/api/package.json index 07f494cf2..d8ac87d65 100644 --- a/tooling/api/package.json +++ b/tooling/api/package.json @@ -38,7 +38,7 @@ "scripts": { "build": "rollup -c --configPlugin typescript", "npm-pack": "pnpm build && cd ./dist && npm pack", - "npm-publish": "pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --tag next", + "npm-publish": "pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --tag next --no-git-checks", "ts:check": "tsc --noEmit", "eslint:check": "eslint src/**.ts", "eslint:fix": "eslint src/**.ts --fix"