From b5f257bf1ac1fdd080e1f943d6991a8add53fa5b Mon Sep 17 00:00:00 2001 From: Simon Mika Date: Fri, 24 Apr 2026 14:11:45 +0200 Subject: [PATCH] Added provenance argument. Co-authored-by: Copilot --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 94bcfaf..1ba42d7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,7 +19,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 16 + node-version: 24 registry-url: https://registry.npmjs.org - name: Install dependencies run: npm ci @@ -27,10 +27,10 @@ jobs: run: npm run build - name: Publish beta if: github.ref_name == 'master' - run: npm publish --access public --tag beta + run: npm publish --access public --provenance --tag beta - name: Publish alpha if: github.ref_name == 'master-4' - run: npm publish --access public --tag alpha + run: npm publish --access public --provenance --tag alpha - name: Publish latest if: github.ref_name != 'master' && github.ref_name != 'master-4' - run: npm publish --access public --tag latest + run: npm publish --access public --provenance --tag latest