From e63a29bfa632cf6118929d0dbf69e59613871b07 Mon Sep 17 00:00:00 2001 From: Philip Kristoffersen Date: Sat, 31 Dec 2022 08:30:05 +0100 Subject: [PATCH] Reenable compression on linux binaries --- .github/workflows/release_on_v_tag.yml | 3 +-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release_on_v_tag.yml b/.github/workflows/release_on_v_tag.yml index 938ca89..059974d 100644 --- a/.github/workflows/release_on_v_tag.yml +++ b/.github/workflows/release_on_v_tag.yml @@ -33,7 +33,7 @@ jobs: - os: ubuntu-latest file: target/release/boilr asset_name: linux_BoilR - args: --best --lzma + args: -9 strip: true - os: windows-latest file: target/release/boilr.exe @@ -53,7 +53,6 @@ jobs: - name: Build Release Version run: cargo build --release - name: Compress binaries - if: ${{ matrix.os != 'ubuntu-latest'}} uses: svenstaro/upx-action@v2 with: file: ${{ matrix.file }} diff --git a/Cargo.lock b/Cargo.lock index 77cfa50..08f5aea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -265,7 +265,7 @@ dependencies = [ [[package]] name = "boilr" -version = "1.7.13" +version = "1.7.14" dependencies = [ "base64 0.20.0", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 7726640..d3e270a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2021" name = "boilr" -version = "1.7.13" +version = "1.7.14" [dependencies] base64 = "^0.20.0"