Skip to content

Commit 48b62a7

Browse files
committed
do not archive and compress build
1 parent 3932494 commit 48b62a7

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,13 @@ jobs:
5454
cp config/ci.config.json config/project.json
5555
- name: yarn build
5656
run: yarn build
57-
- name: Archive build
58-
if: ${{ !cancelled() }}
59-
run: |
60-
tar -czvf dists.tar.gz $(find packages -name dist -type d)
6157
- name: Upload build archive
6258
if: ${{ !cancelled() }}
6359
uses: actions/upload-artifact@v4
6460
with:
65-
name: dists.tar.gz
66-
path: dists.tar.gz
67-
retention-days: ${{ env.artifactRetentionDays }}
61+
name: dist
62+
path: packages/**/dist
63+
retention-days: ${{ env.artifactRetentionDays }}
6864

6965
test-the-rest:
7066
name: (bulk) Node.js and Browser (Chrome) Tests
@@ -81,9 +77,7 @@ jobs:
8177
- name: Download build archive
8278
uses: actions/download-artifact@v4
8379
with:
84-
name: dists.tar.gz
85-
- name: Unzip build artifact
86-
run: tar xf dists.tar.gz
80+
name: dist
8781
- uses: actions/setup-node@v4
8882
with:
8983
node-version-file: '.nvmrc'

0 commit comments

Comments
 (0)