Skip to content

Commit

Permalink
Attempt to fix deploy CI
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeom committed Oct 28, 2024
1 parent 6130281 commit b1ed829
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

# Removes ·git to prevent opam from checking out submodueles
- name: Remove .git
run: rm -rf .git
- name: Save .git
run: mv .git /tmp/gitdir-smtml

- name: Setup OCaml 4.14
uses: ocaml/setup-ocaml@v3
Expand All @@ -41,6 +40,9 @@ jobs:
- name: Build doc
run: opam exec -- dune build @doc

- name: Restore .git
run: mv /tmp/gitdir-smtml .git

- name: Coverage report
run: |
BISECT_FILE=`pwd`/bisect opam exec -- dune runtest --force --instrument-with bisect_ppx
Expand Down

0 comments on commit b1ed829

Please sign in to comment.