mirror of
https://github.com/dnote/dnote
synced 2026-03-14 14:35:50 +01:00
15 lines
365 B
Makefile
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
|