dnote/Makefile
Sung Won Cho 73c5c9ac67
Remove upgrade (#102)
* Remove upgrade

* Ask for upgrade

* Adopt installation script to unpack

* Remove unused
2018-09-02 16:54:29 +10:00

15 lines
365 B
Makefile

release:
@echo "** Releasing version $(VERSION)..."
@echo "** Tagging and pushing..."
@git tag -a $(VERSION) -m "$(VERSION)"
@git push --tags
@API_ENDPOINT=https://api.dnote.io goreleaser --rm-dist
.PHONY: release
build-snapshot:
@API_ENDPOINT=http://127.0.0.1:5000 goreleaser --snapshot --rm-dist
.PHONY: build-snapshot
clean:
@git clean -f
.PHONY: clean