Skip to content

Commit

Permalink
Fix incorrect syntax and work on paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmurphy committed May 2, 2024
1 parent 7302936 commit b971df9
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ppx-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,25 @@ jobs:
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: 4.12.1

- name: Install opam packages
run: opam install . --deps-only
working-directory: ppx_src

- name: Build the ppx
run: opam exec -- dune build
working-directory: ppx_src

- run: opam install . --deps-only
- run: opam exec -- dune build
- name: Print out the tree of the build directory on windows
run: ls -R
working-directory: ppx_src/_build

- name: Upload Build Mac / Linux
if: ${{ matrix.os != 'windows-latest' }}
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.os }}
path: ppx_src/_esy/default/build/default/bin/bin.exe
path: ppx_src/_build/default/bin/bin.exe
retention-days: 1

- name: Upload Build Windows
Expand Down

0 comments on commit b971df9

Please sign in to comment.