dnote/Makefile
2018-09-01 16:37:57 +10:00

15 lines
296 B
Makefile

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