diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c9fe73..faa9a5c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,9 +69,11 @@ jobs: run: npm install -g npm@11.5.1 - name: Publish to npm + env: + NPM_CONFIG_PROVENANCE: false run: | if [ "${{ github.event.release.prerelease }}" = "true" ]; then - pnpm publish --no-git-checks --tag next --access public --provenance + pnpm publish --no-git-checks --tag next --access public else - pnpm publish --no-git-checks --tag latest --access public --provenance + pnpm publish --no-git-checks --tag latest --access public fi