Skip to content

Commit

Permalink
add file compression before publish it
Browse files Browse the repository at this point in the history
  • Loading branch information
hugomontero committed May 6, 2024
1 parent 2a80116 commit fa1f513
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/publish-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ jobs:
run: |
npm run generate:manifest ./build ${{ secrets.BINARIES_BASE_URL }}
- name: compress build with gz
run: |
cd build/
for file in *; do
if [ "$file" != "ParticleCLISetup.exe" ]; then
gzip "${file}"
fi
done
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit fa1f513

Please sign in to comment.