diff --git a/Justfile b/Justfile index 1cc4ea1..efabf6c 100644 --- a/Justfile +++ b/Justfile @@ -7,3 +7,9 @@ build: test: go clean -testcache CGO_ENABLED="0" go test -v ./... + +publish version: + @echo 'Publishing {{version}} ...' + git tag -a {{version}} -m "{{version}}" -s + git push origin {{version}} + goreleaser release --rm-dist