From 1d9e533cea5652920e3c2d11db6dcfdcf33d0ae2 Mon Sep 17 00:00:00 2001 From: Artur Arseniev Date: Mon, 21 Oct 2024 12:40:43 +0400 Subject: [PATCH] Remove yarn ref in workflows --- .github/workflows/publish-core-latest.yml | 4 ++-- .github/workflows/publish-core-rc.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-core-latest.yml b/.github/workflows/publish-core-latest.yml index f85565630..b548d43d9 100644 --- a/.github/workflows/publish-core-latest.yml +++ b/.github/workflows/publish-core-latest.yml @@ -1,4 +1,4 @@ -name: Publish GrapesJS Core +name: Publish GrapesJS core latest on: push: branches: [dev] @@ -23,4 +23,4 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" >> ./packages/core/.npmrc - yarn publish:core:latest + pnpm publish:core:latest diff --git a/.github/workflows/publish-core-rc.yml b/.github/workflows/publish-core-rc.yml index 7ac9ad7fc..f1ea6b791 100644 --- a/.github/workflows/publish-core-rc.yml +++ b/.github/workflows/publish-core-rc.yml @@ -1,4 +1,4 @@ -name: Publish GrapesJS Core +name: Publish GrapesJS core rc on: push: branches: [dev] @@ -23,4 +23,4 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} run: | echo "//registry.npmjs.org/:_authToken=${NODE_AUTH_TOKEN}" >> ./packages/core/.npmrc - yarn publish:core:rc + pnpm publish:core:rc