Skip to content

Commit

Permalink
fix: do not compress binary with upx
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe authored Dec 6, 2023
1 parent b8fd96d commit 58df8b7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ jobs:
use-cross: ${{ matrix.cross }}
command: build
args: --release --target=${{ matrix.target }}
- name: Compress binaries
continue-on-error: true
uses: svenstaro/upx-action@v2
with:
file: target/${{ matrix.target }}/release/ipa_renamer${{ matrix.file-ext }}
args: -q --best --lzma
strip: false
# - name: Compress binaries
# continue-on-error: true
# uses: svenstaro/upx-action@v2
# with:
# file: target/${{ matrix.target }}/release/ipa_renamer${{ matrix.file-ext }}
# args: -q --best --lzma
# strip: false
- name: pack
run: |
mkdir -p release-${{ matrix.target }}
Expand All @@ -94,4 +94,4 @@ jobs:
- name: release
uses: softprops/action-gh-release@v1
with:
files: release-${{ matrix.target }}/*
files: release-${{ matrix.target }}/*

0 comments on commit 58df8b7

Please sign in to comment.