Add once again the use of UPX for the linux releases

Signed-off-by: alexis-opolka <53085471+alexis-opolka@users.noreply.github.com>
This commit is contained in:
alexis-opolka 2025-04-09 19:51:53 +02:00
parent 89b38ff3dc
commit 8c60bc2668

View file

@ -102,6 +102,14 @@ release() {
### We export a CI/CD variable to be used later in the pipeline
echo "EXTENSION=zip" >> $GITHUB_OUTPUT
else
if upx --best --lzma "$bin_path"; then
log::info "upx succeeded"
else
log::info "upx failed"
fi
### For all other targets, they have tar as the norm
### or have it installed by default.
tar -czf "navi.tar.gz" "navi"