diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..91f0011 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: build +build: + goreleaser build --rm-dist --single-target --snapshot + @echo "go to '.tdl/dist' directory to see the package!" + +.PHONY: packaging +packaging: + goreleaser release --skip-publish --auto-snapshot --rm-dist + @echo "go to '.tdl/dist' directory to see the packages!"