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 f11e025 commit 9417bd9Copy full SHA for 9417bd9
Makefile
@@ -15,14 +15,9 @@ clean:
15
REPO=../opam-repository
16
PACKAGES=$(REPO)/packages
17
18
-# until we have https://github.com/ocaml/opam-publish/issues/38
19
-pkg-%:
20
- topkg opam pkg -n $*
21
- mkdir -p $(PACKAGES)/$*
22
- cp -r _build/$*.* $(PACKAGES)/$*/
23
- rm -f $(PACKAGES)/$*/$*.opam
24
- cd $(PACKAGES) && git add $*
25
-
26
-PKGS=$(basename $(wildcard *.opam))
27
-opam-pkg:
28
- $(MAKE) $(PKGS:%=pkg-%)
+opam-release:
+ dune-release distrib --skip-build --skip-lint --skip-tests
+ # See https://github.com/ocamllabs/dune-release/issues/206
+ DUNE_RELEASE_DELEGATE=github-dune-release-delegate dune-release publish distrib --verbose
+ dune-release opam pkg
+ dune-release opam submit
0 commit comments