From b533e4aa69a856e19fc7b87ef60e603418a2aa23 Mon Sep 17 00:00:00 2001 From: Przemek Adamczewski Date: Wed, 29 Apr 2026 17:14:45 +0100 Subject: [PATCH] fix: npm install -g npm@latest in release.yml --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d8c0df1..2fd9dc8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: - name: Push changes run: git push origin HEAD:${{ github.ref }} - name: Update npm - run: npm install -g npm@latest + run: npm install -g npm@11.11.1 - name: Publish to NPM run: pnpm publish --access public --tag ${{ inputs.prerelease == true && 'next' || 'latest' }} --publish-branch ${{ github.ref_name }} --no-git-checks - name: 'Create release notes'