Skip to content

Commit

Permalink
Create checksum files for release
Browse files Browse the repository at this point in the history
  • Loading branch information
JanB committed Apr 18, 2016
1 parent 799693e commit 0ebbcd5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ release: dist
tar -cvzf release/$(NAME)-$(VERSION)-linux-armhf.tar.gz -C dist/linux/armhf $(NAME)
tar -cvzf release/$(NAME)-$(VERSION)-darwin-amd64.tar.gz -C dist/darwin/amd64 $(NAME)
tar -cvzf release/$(NAME)-$(VERSION)-windows-amd64.tar.gz -C dist/windows/amd64 $(NAME).exe
$(eval FILES := $(shell ls release))
@for f in $(FILES); do \
(cd $(shell pwd)/release && shasum -a 256 $$f > $$f.sha256); \
(cd $(shell pwd)/release && md5sum $$f > $$f.md5); \
done
ghr -u janeczku -r docker-machine-vultr --replace $(VERSION) release/

get-deps:
Expand Down

0 comments on commit 0ebbcd5

Please # to comment.