Skip to content

Commit fa1f513

Browse files
committed
add file compression before publish it
1 parent 2a80116 commit fa1f513

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/publish-v2.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,15 @@ jobs:
4040
run: |
4141
npm run generate:manifest ./build ${{ secrets.BINARIES_BASE_URL }}
4242
43+
- name: compress build with gz
44+
run: |
45+
cd build/
46+
for file in *; do
47+
if [ "$file" != "ParticleCLISetup.exe" ]; then
48+
gzip "${file}"
49+
fi
50+
done
51+
4352
- name: Upload artifacts
4453
uses: actions/upload-artifact@v2
4554
with:

0 commit comments

Comments
 (0)