Compare commits

..

9 Commits

Author SHA1 Message Date
Matthieu Dubuget
253633f09d Annulation des 3 dernier commits 2021-05-24 15:57:02 +02:00
Matthieu Dubuget
4658be437b
Trying anothe way 2021-05-24 15:44:21 +02:00
Matthieu Dubuget
e484d4a777
Typo 2021-05-24 15:39:51 +02:00
Matthieu Dubuget
dd0bfdb5d8
Try another way to write upload artifact 2021-05-24 15:36:32 +02:00
Matthieu Dubuget
1ac1681bcd
Correct artifact name 2021-05-24 15:14:09 +02:00
Matthieu Dubuget
6ae72e4fc5
Adapt artifact names 2021-05-24 15:05:37 +02:00
Matthieu Dubuget
5bb8a94c2f
nbr.exe is nbr on linux 2021-05-24 14:50:41 +02:00
Matthieu Dubuget
8cfbfb6274
Essai uploads 2021-05-24 14:45:18 +02:00
Matthieu Dubuget
469c836ea0
Update README.md 2021-05-24 14:11:55 +02:00
2 changed files with 20 additions and 1 deletions

View File

@ -11,7 +11,6 @@ jobs:
fail-fast: false
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
ocaml-compiler:
@ -31,3 +30,21 @@ 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
# 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
# A file, directory or wildcard pattern that describes what to upload
path: _build/install/default/bin/nbr
retention-days: 1

View File

@ -11,3 +11,5 @@ references:
- https://leconjugueur.lefigaro.fr/frlesnombres.php
- https://www.miakinen.net/vrac/nombres
- https://www.dcode.fr/ecriture-nombre-lettres
[![CI](https://github.com/ttamttam/nombres/actions/workflows/blank.yml/badge.svg)](https://github.com/ttamttam/nombres/actions/workflows/blank.yml)