Skip to content

Commit

Permalink
chore: fix binary release
Browse files Browse the repository at this point in the history
  • Loading branch information
moshloop committed Mar 10, 2025
1 parent f7ad731 commit 2dfe70c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
runs-on: ubuntu-latest
needs: semantic-release
strategy:
fail-fast: false
matrix:
os: [linux, darwin, windows]
steps:
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ docker-push:

.PHONY: compress
compress: .bin/upx
upx -5 ./$(RELEASE_DIR)/$(NAME)_linux_amd64 ./$(RELEASE_DIR)/$(NAME)_linux_arm64
test -e ./$(RELEASE_DIR)/$(NAME)_linux_amd64 && $(UPX) -5 ./$(RELEASE_DIR)/$(NAME)_linux_amd64 || true
test -e ./$(RELEASE_DIR)/$(NAME)_linux_arm64 && $(UPX) -5 ./$(RELEASE_DIR)/$(NAME)_linux_arm64 || true

.PHONY: compress-build
compress-build: .bin/upx
Expand Down

0 comments on commit 2dfe70c

Please sign in to comment.