mirror of
https://github.com/go-i2p/go-i2pcontrol.git
synced 2025-06-30 19:53:18 -04:00
21 lines
475 B
Makefile
21 lines
475 B
Makefile
|
|
USER_GH=eyedeekay
|
|
VERSION=0.1.6
|
|
packagename=go-i2pcontrol
|
|
|
|
echo:
|
|
@echo "type make version to do release $(VERSION)"
|
|
|
|
version:
|
|
github-release release -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(packagename) -t v$(VERSION) -d "version $(VERSION)"
|
|
|
|
del:
|
|
github-release delete -s $(GITHUB_TOKEN) -u $(USER_GH) -r $(packagename) -t v$(VERSION)
|
|
|
|
tar:
|
|
tar --exclude .git \
|
|
--exclude .go \
|
|
--exclude bin \
|
|
--exclude examples \
|
|
-cJvf ../$(packagename)_$(VERSION).orig.tar.xz .
|