dnote/Makefile
Sung Won Cho b3a12aed85
Deprecate upgrade (#99)
* Deprecate upgrade

* Automate using goreleaser

* Fix name and version

* Automate
2018-09-01 16:30:15 +10:00

15 lines
286 B
Makefile

release:
@echo "** Releasing version $(VERSION)..."
@echo "** Tagging and pushing..."
@git tag -a $(VERSION) -m "$(VERSION)"
@git push --tags
@goreleaser
.PHONY: release
build-snapshot:
@goreleaser --snapshot --rm-dist
.PHONY: build-snapshot
clean:
@git clean -f
.PHONY: clean