aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.release9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.release b/Makefile.release
index 50ef7da39..a5795bde7 100644
--- a/Makefile.release
+++ b/Makefile.release
@@ -97,13 +97,20 @@ github-push:
@echo Releasing: $(VERSION)
@$(eval RELEASE:=$(shell curl -s -d '{"tag_name": "v$(VERSION)", "name": "v$(VERSION)"}' "https://api.github.com/repos/$(GITHUB)/$(NAME)/releases?access_token=${GITHUB_ACCESS_TOKEN}" | grep -m 1 '"id"' | tr -cd '[[:digit:]]'))
@echo ReleaseID: $(RELEASE)
- @for asset in `ls -A release`; do \
+ @for asset in `ls -A release/*tgz`; do \
echo $$asset; \
curl -o /dev/null -X POST \
-H "Content-Type: application/gzip" \
--data-binary "@release/$$asset" \
"https://uploads.github.com/repos/$(GITHUB)/$(NAME)/releases/$(RELEASE)/assets?name=$${asset}&access_token=${GITHUB_ACCESS_TOKEN}" ; \
done
+ @for asset in `ls -A release/*sha256`; do \
+ echo $$asset; \
+ curl -o /dev/null -X POST \
+ -H "Content-Type: text/plain" \
+ --data-binary "@release/$$asset" \
+ "https://uploads.github.com/repos/$(GITHUB)/$(NAME)/releases/$(RELEASE)/assets?name=$${asset}&access_token=${GITHUB_ACCESS_TOKEN}" ; \
+ done
.PHONY: docker-build
docker-build: tar