diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 63934f54b1e..256acb6344b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -55,11 +55,12 @@ jobs: - name: yarn build run: yarn build - name: Upload build archive - if: ${{ !cancelled() }} uses: actions/upload-artifact@v4 with: - name: dist - path: packages/**/dist + name: dists + path: | + packages/**/dist + repo-scripts/**/dist retention-days: ${{ env.artifactRetentionDays }} test-the-rest: @@ -70,14 +71,10 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - # install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo - - name: install Chrome stable - run: | - npx @puppeteer/browsers install chrome@stable - name: Download build archive uses: actions/download-artifact@v4 with: - name: dist + name: dists - uses: actions/setup-node@v4 with: node-version-file: '.nvmrc'