From 70cce7b77804218f85151030a490a435a79d537c Mon Sep 17 00:00:00 2001 From: Simon Mika Date: Thu, 11 Dec 2025 15:23:57 +0100 Subject: [PATCH] Switched to OIDC authentication. Removed provenance flag from npm publish commands. --- .github/workflows/publish.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fb9b7b2..f796ec3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,11 +25,10 @@ jobs: run: npm run build - name: Publish run: | - echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > .npmrc VERSION=$(node -p "require('./package.json').version") if [[ "$VERSION" == *-* ]]; then - npm publish --provenance --access public --tag prerelease + npm publish --access public --tag prerelease else - npm publish --provenance --access public + npm publish --access public fi shell: bash