From 00fa8db4280450ccab644576512fef5379a5fc6b Mon Sep 17 00:00:00 2001 From: Slavic Cotruta Date: Mon, 2 Sep 2024 16:14:27 +0200 Subject: [PATCH] Fixes publishing after yarn berry upgrade --- .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 3459390..9cc4323 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: # Publish version to public repository - name: Publish - run: yarn publish --verbose --access public --tag ${{ env.RELEASE_TAG }} + run: npm publish --access public --tag ${{ env.RELEASE_TAG }} env: NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}