Annulation des 3 dernier commits

This commit is contained in:
Matthieu Dubuget 2021-05-24 15:57:02 +02:00
parent 4658be437b
commit 253633f09d

View File

@ -31,19 +31,20 @@ jobs:
- run: opam exec -- dune build - run: opam exec -- dune build
- name: Upload artifact - name: Upload a Windows Build Artifact
uses: actions/upload-artifact@v2.2.3 uses: actions/upload-artifact@v2.2.3
if: runner.os == 'Windows'
with: with:
name: | name: nbr-win32
if [ "$RUNNER_OS" == "Windows" ]; then # A file, directory or wildcard pattern that describes what to upload
echo "nbr-win" path: _build/install/default/bin/nbr.exe
else retention-days: 1
echo "nbr-lin"
fi - name: Upload a Linux Build Artifact
path: | uses: actions/upload-artifact@v2.2.3
if [ "$RUNNER_OS" == "Windows" ]; then if: runner.os == 'Linux'
"_build/install/default/bin/nbr.exe" with:
else name: nbr-linux
"_build/install/default/bin/nbr" # A file, directory or wildcard pattern that describes what to upload
fi path: _build/install/default/bin/nbr
retention-days: 1 retention-days: 1