Rectify11 / Installer

A Windows 11 modification which makes it more consistent.
GNU General Public License v3.0
2.87k stars 157 forks source link

Disable compression in Action because the .exe file is already compressed #480

Closed OEMunlag closed 7 months ago

OEMunlag commented 7 months ago

The packaged .exe is already compressed, the Upload build artifact action will compress the file, as the file is already compressed, the resulting size will be equal, increasing uselessly the action cpu usage, while also increasing decompression time on the end computer.

Instead, setting the compression level to 0 will zip the packaged executable, however, no compression is done, resulting in faster performance on both actions remote runners and the end user computer, with the size being the same.

OEMunlag commented 7 months ago

Other commits can be ignored, because of most being master branch syncs previously commited, only the main commit seems to be able to get pushed, to be sure, check the diffs

OEMunlag commented 7 months ago

Tests seem to have worked, compared to the whole 42 seconds it used to take to upload, it now takes a mere 3 seconds, a clear improvement.

MishaProductions commented 7 months ago

Thanks for the PR!