diff --git a/.github/workflows/ppx-push.yaml b/.github/workflows/ppx-push.yaml index b67606d..cd645ca 100644 --- a/.github/workflows/ppx-push.yaml +++ b/.github/workflows/ppx-push.yaml @@ -17,8 +17,8 @@ jobs: name: PPX Build Matrix strategy: matrix: - os: [macos-latest, ubuntu-latest, windows-latest] - ocaml-compiler: ["5.1"] + os: [macos-latest, ubuntu-latest] + ocaml-compiler: ["5.1.0"] runs-on: ${{ matrix.os }} steps: @@ -34,18 +34,10 @@ jobs: - name: Run Build run: make 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 - retention-days: 1 - - name: Upload Build Windows - if: ${{ matrix.os == 'windows-latest' }} - uses: actions/upload-artifact@v2 - with: - name: ${{ matrix.os }} - path: ppx_src/_esy/default/store/b/*/default/bin/bin.exe + path: _build/default/ppx_src/bin/bin.exe retention-days: 1 npm-release: @@ -67,7 +59,6 @@ jobs: run: | mv ubuntu-latest/bin.exe ./ppx-linux.exe mv macos-latest/bin.exe ./ppx-osx.exe - mv windows-latest/*/default/bin/bin.exe ./ppx-windows.exe - uses: actions/setup-node@v1 with: diff --git a/.github/workflows/ppx.yaml b/.github/workflows/ppx.yaml index b0ac049..9786461 100644 --- a/.github/workflows/ppx.yaml +++ b/.github/workflows/ppx.yaml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: ocaml/setup-ocaml@v2 with: - ocaml-compiler: "5.1" + ocaml-compiler: "5.1.0" - name: Install Dependencies run: make install - name: Build diff --git a/package.json b/package.json index 4ce757e..9f9069c 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bs-pancake", - "version": "1.4.0", + "version": "2.0.1", "license": "BSD-3-Clause", "scripts": { "start": "dune build -w", @@ -20,8 +20,7 @@ "/ppx", "/ppx.cmd", "/ppx-linux.exe", - "/ppx-osx.exe", - "/ppx-windows.exe" + "/ppx-osx.exe" ], "devDependencies": { "jest": "^26.5.2"