diff --git a/scripts/bash/npm-helpers/npm_publish.sh b/scripts/bash/npm-helpers/npm_publish.sh
index e1a8bef26865dd45e8db70a9a0c80375589876e8..68e6175783ff6aefab6f1934778ed2094f0487d0 100755
--- a/scripts/bash/npm-helpers/npm_publish.sh
+++ b/scripts/bash/npm-helpers/npm_publish.sh
@@ -40,7 +40,7 @@ else
   set -e
   echo "Publishing ${NAME}@${VERSION} to tag ${PACKAGE_DIST_TAG}"
   # We are going to repack the tarball as there are registry-dependent data in each job for package.json
-  pnpm publish --access=public --tag "${PACKAGE_DIST_TAG}"
+  pnpm publish --no-git-checks --access=public --tag "${PACKAGE_DIST_TAG}"
 fi
 
 popd