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'