From: Anna Arad <4895022+annagrram@users.noreply.github.com> Date: Mon, 13 Jan 2020 21:38:20 +0000 (+0200) Subject: Update Haiku Makefile with changes of original (#435) X-Git-Tag: v2.9~12 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=44871dd9d7c54f2f6836c560bfe7061c32b01878;p=nnn.git Update Haiku Makefile with changes of original (#435) --- diff --git a/misc/haiku/Makefile b/misc/haiku/Makefile index a152c3cf..843df9d9 100644 --- a/misc/haiku/Makefile +++ b/misc/haiku/Makefile @@ -108,9 +108,19 @@ dist: tar -cf - nnn-$(VERSION) | gzip > nnn-$(VERSION).tar.gz $(RM) -r nnn-$(VERSION) +sign: + git archive -o nnn-$(VERSION).tar.gz --format tar.gz --prefix=nnn-$(VERSION)/ v$(VERSION) + gpg --detach-sign --yes nnn-$(VERSION).tar.gz + rm -f nnn-$(VERSION).tar.gz + + $(eval ID=$(shell curl -s 'https://api.github.com/repos/jarun/nnn/releases/tags/v$(VERSION)' | jq .id)) + curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION).tar.gz.sig' \ + -H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/pgp-signature' \ + --upload-file nnn-$(VERSION).tar.gz.sig + clean: - $(RM) -f $(BIN) $(OBJS) nnn-$(VERSION).tar.gz + $(RM) -f $(BIN) $(OBJS) nnn-$(VERSION).tar.gz *.sig skip: ; -.PHONY: all debug install uninstall strip dist clean +.PHONY: all install uninstall strip dist sign clean