Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bistro: stop publishing docs #499

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

- Use the 'user' option as the fork owner, only attempt to decode the remote URL if the user option is not set. (#480, @Julow)

- `dune-release bistro` no longer publishes docs to github pages. Instead, we rely on
the docs published under `ocaml.org/packages`.

### Deprecated

### Fixed
Expand Down
10 changes: 5 additions & 5 deletions bin/bistro.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let bistro () (`Dry_run dry_run) (`Package_names pkg_names)
~skip_lint ~skip_build ~skip_tests ~include_submodules ()
>! fun () ->
Publish.publish ~token ~pkg_names ~version ~tag ~keep_v ~dry_run
~publish_artefacts:[] ~yes:false ~draft ()
~publish_artefacts:[ `Distrib ] ~yes:false ~draft ()
>! fun () ->
Opam.get_pkgs ~dry_run ~keep_v ~tag ~pkg_names ~version () >>= fun pkgs ->
Opam.pkg ~dry_run ~pkgs () >! fun () ->
Expand All @@ -43,10 +43,10 @@ let man =
`S Manpage.s_description;
`P "The $(tname) command (quick in Russian) is equivalent to invoke:";
`Pre
"dune-release distrib # Create the distribution archive\n\
dune-release publish # Publish it to Github with its documentation\n\
dune-release opam pkg # Create an opam package\n\
dune-release opam submit # Submit it to OCaml's opam repository";
"dune-release distrib # Create the distribution archive\n\
dune-release publish distrib # Publish it to Github\n\
dune-release opam pkg # Create an opam package\n\
dune-release opam submit # Submit it to OCaml's opam repository";
`P "See dune-release(7) for more information.";
]

Expand Down