From 4e587affab5f1618d67d7abcd047d28b403a0e1b Mon Sep 17 00:00:00 2001 From: Julian Skinner Date: Thu, 31 Aug 2023 20:40:28 -0500 Subject: [PATCH] ci: move the cache build process prior to running 'lerna bootstrap' step --- .github/workflows/release-deploy-v2.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-deploy-v2.yml b/.github/workflows/release-deploy-v2.yml index 797c73f165..778c66c02b 100644 --- a/.github/workflows/release-deploy-v2.yml +++ b/.github/workflows/release-deploy-v2.yml @@ -198,9 +198,6 @@ jobs: - name: Unsafe Perm set run: npm config set unsafe-perm true - - name: Lerna Boostrap - run: npx lerna bootstrap --ci - - name: Restore Build assets uses: actions/cache/restore@v3 id: restore-sage-lib-build-assets @@ -214,6 +211,9 @@ jobs: if: steps.restore-sage-lib-build-assets.outputs.cache-hit != 'true' run: exit 1 + - name: Lerna Boostrap + run: npx lerna bootstrap --ci + - name: Lerna Publish run: npx lerna publish --registry github --yes