Skip to content

Commit

Permalink
[#348] Use upx to compress release binaries (#360)
Browse files Browse the repository at this point in the history
* [#348] Use upx to compress release binaries

Resolves #348

* Remove strip step
  • Loading branch information
vrom911 authored Jul 27, 2020
1 parent 24cbae6 commit 45a19d6
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,10 @@ jobs:
- name: Set binary path name
run: echo "::set-env name=BINARY_PATH::./dist/stan${{ env.EXT }}"

- name: Strip binary
run: strip ${{ env.BINARY_PATH }}

# - name: Compress binary
# uses: svenstaro/upx-action@v2
# with:
# file: dist/stan
- name: Compress binary
uses: svenstaro/[email protected]
with:
file: ${{ env.BINARY_PATH }}

- name: Load Release URL File from release job
uses: actions/download-artifact@v1
Expand Down

0 comments on commit 45a19d6

Please sign in to comment.