From 8cfbfb6274f553be51e0b13ea14b61c0af5b44d6 Mon Sep 17 00:00:00 2001 From: Matthieu Dubuget Date: Mon, 24 May 2021 14:45:18 +0200 Subject: [PATCH] Essai uploads --- .github/workflows/blank.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index a8cef42..7216b5e 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -11,7 +11,6 @@ jobs: fail-fast: false matrix: os: - - macos-latest - ubuntu-latest - windows-latest ocaml-compiler: @@ -31,3 +30,22 @@ jobs: - run: opam install . --deps-only - run: opam exec -- dune build + + - name: Upload a Windows Build Artifact + uses: actions/upload-artifact@v2.2.3 + if: runner.os == 'Windows' + with: + name: nbr-win32.exe + # A file, directory or wildcard pattern that describes what to upload + path: _build/install/default/bin/nbr.exe + retention-days: 1 + + - name: Upload a Linux Build Artifact + uses: actions/upload-artifact@v2.2.3 + if: runner.os == 'Linux' + with: + name: nbr-linux.exe + # A file, directory or wildcard pattern that describes what to upload + path: _build/install/default/bin/nbr.exe + retention-days: 1 +