Skip to content

Commit

Permalink
Compress Editor with UPX
Browse files Browse the repository at this point in the history
  • Loading branch information
brakhane committed Jan 16, 2025
1 parent 13921bc commit c531b73
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ jobs:
move Editor\languages .\
move Editor\fonts .\
- name: Install UPX
shell: cmd
run: choco install --no-progress upx

- name: Compress Editor with UPX
shell: cmd
run: upx --best Editor_Windows.exe

- name: Package Editor
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -82,6 +90,9 @@ jobs:
mv Editor/languages ./
mv Editor/fonts ./
- name: Compress Editor with UPX
run: upx --best Editor_Linux

- name: Package Editor
uses: actions/upload-artifact@v4
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ jobs:
move Editor\languages .\
move Editor\fonts .\
- name: Install UPX
shell: cmd
run: choco install --no-progress upx

- name: Compress Editor with UPX
shell: cmd
run: upx --best Editor_Windows.exe

- name: Package Editor
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -97,6 +105,9 @@ jobs:
mv Editor/languages ./
mv Editor/fonts ./
- name: Compress Editor with UPX
run: upx --best Editor_Linux

- name: Package Editor
uses: actions/upload-artifact@v4
with:
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ jobs:
move Editor\languages .\
move Editor\fonts .\
- name: Install UPX
shell: cmd
run: choco install --no-progress upx

- name: Compress Editor with UPX
shell: cmd
run: upx --best Editor_Windows.exe

- name: Package Editor
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -98,6 +106,9 @@ jobs:
mv Editor/languages ./
mv Editor/fonts ./
- name: Compress Editor with UPX
run: upx --best Editor_Linux

- name: Package Editor
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit c531b73

Please sign in to comment.