We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc588d4 commit a80ddddCopy full SHA for a80dddd
Makefile
@@ -39,3 +39,12 @@ configure:
39
.PHONY: build doc test all install uninstall reinstall clean distclean configure
40
41
# OASIS_STOP
42
+
43
+VERSION=$(shell oasis query version)
44
+NAME=ocaml-mariadb-$(VERSION)
45
46
+.PHONY: release
47
+release:
48
+ git tag -a -m $(VERSION) $(VERSION)
49
+ git archive --prefix=$(NAME)/ $(VERSION) | gzip > $(NAME).tar.gz
50
+ gpg -a -b $(NAME).tar.gz -o $(NAME).tar.gz.asc
0 commit comments