From 3f65e5d83eac82e22759a11eb1afb55f4bb0e982 Mon Sep 17 00:00:00 2001 From: arabian Date: Sun, 5 Apr 2026 00:36:09 +0300 Subject: [PATCH] do not use upx for windows arm --- .github/workflows/dev-release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/dev-release.yml b/.github/workflows/dev-release.yml index 1a313fe..9841c5e 100644 --- a/.github/workflows/dev-release.yml +++ b/.github/workflows/dev-release.yml @@ -67,8 +67,7 @@ jobs: run: cargo build --release --target ${{ matrix.target }} - name: Compress binary with UPX - # UPX ломает подписи кода на macOS (особенно на Apple Silicon), поэтому применяем только для Linux и Windows - if: matrix.os != 'macos-latest' + if: matrix.os != 'macos-latest' && matrix.target != 'aarch64-pc-windows-msvc' uses: crazy-max/ghaction-upx@v3 with: version: latest