mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
upx compress all static binaries before upload
This commit is contained in:
parent
13923117dc
commit
0bfc590f90
4
Makefile
4
Makefile
|
@ -199,6 +199,10 @@ upload-local: sign static
|
||||||
-H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/pgp-signature' \
|
-H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/pgp-signature' \
|
||||||
--upload-file nnn-$(VERSION).tar.gz.sig
|
--upload-file nnn-$(VERSION).tar.gz.sig
|
||||||
tar -zcf $(BIN)-static-$(VERSION).x86_64.tar.gz $(BIN)-static
|
tar -zcf $(BIN)-static-$(VERSION).x86_64.tar.gz $(BIN)-static
|
||||||
|
# upx compress all static binaries
|
||||||
|
upx -qqq $(BIN)-static
|
||||||
|
upx -qqq $(BIN)-icons-static
|
||||||
|
upx -qqq $(BIN)-nerd-static
|
||||||
# upload static binary
|
# upload static binary
|
||||||
curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=$(BIN)-static-$(VERSION).x86_64.tar.gz' \
|
curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=$(BIN)-static-$(VERSION).x86_64.tar.gz' \
|
||||||
-H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/x-sharedlib' \
|
-H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/x-sharedlib' \
|
||||||
|
|
Loading…
Reference in a new issue