Skip to content

Commit

Permalink
do not archive and compress build
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarocque committed Oct 31, 2024
1 parent 3932494 commit 48b62a7
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Expand Down

0 comments on commit 48b62a7

Please sign in to comment.