From bf85ea44f5c0eb5dc7edb8e4ac9e91114fdb0980 Mon Sep 17 00:00:00 2001 From: Saif Ali Shaik Date: Fri, 15 May 2026 15:40:00 +0530 Subject: [PATCH] chore: enable provenance now that repo is public MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove NPM_CONFIG_PROVENANCE=false, restore --provenance flag. Provenance requires public source repo — now satisfied. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index faa9a5c..2c9fe73 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,11 +69,9 @@ 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 + pnpm publish --no-git-checks --tag next --access public --provenance else - pnpm publish --no-git-checks --tag latest --access public + pnpm publish --no-git-checks --tag latest --access public --provenance fi