From ede6ba2fa0a2d0b48a43627c5dd92be96c289fed Mon Sep 17 00:00:00 2001 From: Shine Li Date: Thu, 25 Jul 2024 14:13:45 +1000 Subject: [PATCH] debug publish (#2014) --- .github/workflows/publish.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index e79495d0a7..5a02d8cc00 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -95,7 +95,7 @@ jobs: key: ${{ runner.os }}-build-cache-deps-${{ hashFiles('yarn.lock') }} - name: Install dependencies - if: steps.restore-cache-node_modules.outputs.cache-hit != 'true' + if: steps.restore-cache-node_modules.outputs.cache-hit != 'true' run: yarn install --immutable - name: Lint @@ -115,7 +115,9 @@ jobs: jq '.version = "${{steps.version.outputs.NEXT_VERSION}}"' ./sdk/package.json > "$tmp" && mv "$tmp" ./sdk/package.json - name: Build - run: export NODE_OPTIONS=--max-old-space-size=6144 && RELEASE_TYPE=${{ env.RELEASE_TYPE }} yarn build + run: | + export NODE_OPTIONS=--max-old-space-size=6144 && RELEASE_TYPE=${{ env.RELEASE_TYPE }} yarn build + ls -l ./sdk/dist - name: Typecheck run: yarn typecheck