From 48b62a78efe0fc9fee33f6c699cffbf44ee7a523 Mon Sep 17 00:00:00 2001 From: Daniel La Rocque Date: Thu, 31 Oct 2024 17:38:41 -0400 Subject: [PATCH] do not archive and compress build --- .github/workflows/build.yaml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 20dc438dc54..63934f54b1e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -54,17 +54,13 @@ jobs: cp config/ci.config.json config/project.json - name: yarn build run: yarn build - - name: Archive build - if: ${{ !cancelled() }} - run: | - tar -czvf dists.tar.gz $(find packages -name dist -type d) - name: Upload build archive if: ${{ !cancelled() }} uses: actions/upload-artifact@v4 with: - name: dists.tar.gz - path: dists.tar.gz - retention-days: ${{ env.artifactRetentionDays }} + name: dist + path: packages/**/dist + retention-days: ${{ env.artifactRetentionDays }} test-the-rest: name: (bulk) Node.js and Browser (Chrome) Tests @@ -81,9 +77,7 @@ jobs: - name: Download build archive uses: actions/download-artifact@v4 with: - name: dists.tar.gz - - name: Unzip build artifact - run: tar xf dists.tar.gz + name: dist - uses: actions/setup-node@v4 with: node-version-file: '.nvmrc'