Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/upload-assets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ jobs:
run: SHA=${{ github.sha }} npm run build
- name: Gzip individual files (keep originals)
run: ls dist/assets/*.{js,css,map} | xargs gzip --keep
# Brotli is ~14% smaller than gzip on our JS/CSS. Nexus serves .br when the
# client's Accept-Encoding allows it, falling back to .gz then identity.
- name: Brotli individual files (keep originals)
run: ls dist/assets/*.{js,css,map} | xargs brotli --keep --quality=11
- name: add console_version file
run: echo ${{ github.sha }} > dist/VERSION
- run: mkdir -p releases/console
Expand Down
Loading