From be477b22baf025a712c2602563dd83b6dea0743d Mon Sep 17 00:00:00 2001 From: ocavue Date: Sat, 27 Jul 2024 23:23:01 +1000 Subject: [PATCH] ci: remove --provenance --- .github/actions/setup/action.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index d5e259a..0382053 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -15,7 +15,7 @@ runs: with: node-version: ${{ inputs.node-version }} cache: yarn - registry-url: 'https://registry.npmjs.org' + registry-url: 'https://registry.npmjs.org/' - name: Install run: yarn install diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9b14d28..1a7b7df 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,6 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish to NPM - run: npm publish --provenance --access public + run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}