From 1c557d37956d25c597ee22cc1a7b17b4135229ee Mon Sep 17 00:00:00 2001 From: Cayman Date: Thu, 23 Jan 2025 15:52:35 -0500 Subject: [PATCH] fix: update npm publish step Update npm publish to how it was "before" yarn 3 migration - see https://github.com/ChainSafe/ssz/pull/290/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519L17 --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1f2bfcb..5f848ffc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,7 +57,7 @@ jobs: - name: Check npm config run: npm config list - - run: node_modules/.bin/lerna exec --ignore root --ignore simpleserialize.com --no-private "npm publish --access public" + - run: node_modules/.bin/lerna publish from-package --no-verify-access if: ${{ steps.release.outputs.releases_created }} @@ -69,4 +69,4 @@ jobs: accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} projectName: simpleserialize directory: ./packages/simpleserialize.com/dist - gitHubToken: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + gitHubToken: ${{ secrets.GITHUB_TOKEN }}