From 369e2bac052ee27eb98e9a56983f58105b275279 Mon Sep 17 00:00:00 2001 From: Daniel La Rocque Date: Fri, 1 Nov 2024 12:10:56 -0400 Subject: [PATCH] upload repo-scripts/**/dist --- .github/workflows/build.yaml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) 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'