diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..d057e714 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: all +all: + +.PHONY: publish +publish: + git tag --force v$$(cat Cargo.toml | grep version | head -1 | cut -d\" -f2) + git push --tags + cargo publish