We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7ad731 commit 2dfe70cCopy full SHA for 2dfe70c
.github/workflows/release.yml
@@ -70,6 +70,7 @@ jobs:
70
runs-on: ubuntu-latest
71
needs: semantic-release
72
strategy:
73
+ fail-fast: false
74
matrix:
75
os: [linux, darwin, windows]
76
steps:
Makefile
@@ -130,7 +130,8 @@ docker-push:
130
131
.PHONY: compress
132
compress: .bin/upx
133
- 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
134
+ test -e ./$(RELEASE_DIR)/$(NAME)_linux_arm64 && $(UPX) -5 ./$(RELEASE_DIR)/$(NAME)_linux_arm64 || true
135
136
.PHONY: compress-build
137
compress-build: .bin/upx
0 commit comments