From 4c95a09a9e133e1a957855056e23b125dd98af99 Mon Sep 17 00:00:00 2001 From: Volodymyr Vreshch Date: Fri, 20 Mar 2026 02:33:37 +0100 Subject: [PATCH] fix: remove --provenance from npm publish Classic npm tokens don't support provenance signing, causing E404 on PUT. Previous publishes were done manually without provenance. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 35de3ad..02d0065 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -182,7 +182,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | echo "📤 Publishing ${{ matrix.package.name }}@${{ matrix.package.version }}" - npm publish --access public --provenance + npm publish --access public - name: 🏷️ Create git tag run: |