From 5e59cdf7bdf5e3be65c6365579ec4943a89dcb87 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Fri, 24 Oct 2025 16:24:07 +0300 Subject: [PATCH] ci: fix package publishing with --access public --- .github/workflows/publish-npm.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-npm.yaml b/.github/workflows/publish-npm.yaml index d316657d6..faaa9cbab 100644 --- a/.github/workflows/publish-npm.yaml +++ b/.github/workflows/publish-npm.yaml @@ -42,7 +42,7 @@ jobs: GITHUB_REF: ${{ github.ref }} - name: Publish to NPM - run: yarn publish --new-version ${GITHUB_REF#refs/tags/v} --tag ${{ steps.determine-npm-tag.outputs.NPM_TAG }} --no-git-tag-version + run: yarn publish --new-version ${GITHUB_REF#refs/tags/v} --tag ${{ steps.determine-npm-tag.outputs.NPM_TAG }} --no-git-tag-version --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} GITHUB_REF: ${{ github.ref }}