Skip to content

Commit

Permalink
Update the PPX push action with fixed command
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmurphy committed Apr 26, 2024
1 parent 3df2044 commit 52dbfdf
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ppx-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ jobs:
uses: avsm/setup-ocaml@v1
with:
ocaml-version: 4.12.1 # replace with your desired version
- name: Install Dune
run: opam install dune
- name: Run Build
run: yarn build-ppx
- name: Install OCaml Dependencies and build
run: |
cd ppx_src
opam install dune
eval $(opam env)
opam install -y . --deps-only
dune build
- name: Upload Build Mac / Linux
if: ${{ matrix.os != 'windows-latest' }}
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 52dbfdf

Please sign in to comment.