Skip to content

Commit

Permalink
Do not compress macOS binaries
Browse files Browse the repository at this point in the history
UPX-compressed binaries are not working on macOS 13[1].

[1]: upx/upx#612
  • Loading branch information
myhro committed Jan 22, 2023
1 parent e3a616e commit e0c20b5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
GOOS: ${{ matrix.job.os }}
run: |
make build
- name: UPX
if: matrix.job.os != 'darwin'
run: |
make upx
- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit e0c20b5

Please sign in to comment.