File tree Expand file tree Collapse file tree 3 files changed +34
-17
lines changed Expand file tree Collapse file tree 3 files changed +34
-17
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ buildAndTest :
9+
10+ runs-on :
11+ - windows-latest
12+
13+ steps :
14+ - uses : actions/checkout@v4
15+ - name : Setup .NET
16+ uses : actions/setup-dotnet@v3
17+ with :
18+ dotnet-version : 6.0.428
19+ - name : Build & Run Tests
20+ run : |
21+ .\build.cmd
22+ - name : Upload artifact (bin)
23+ uses : actions/upload-artifact@v4
24+ with :
25+ name : bin
26+ path : bin
27+ - name : Upload artifact (dist)
28+ uses : actions/upload-artifact@v4
29+ with :
30+ name : dist
31+ path : dist
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22rem change the target via -t, e.g.:
33rem build -t PackNuget
44cls
5- dotnet tool restore
6- dotnet paket restore
5+ dotnet tool restore || exit /b 1
6+ dotnet paket restore || exit /b 1
77rem set FAKE_SDK_RESOLVER_CUSTOM_DOTNET_VERSION=8.0
88rem Build with Fake or FSI:
9- dotnet fake run build.fsx %*
9+ dotnet fake run build.fsx %* || exit /b 1
1010rem dotnet fsi build.fsx %*
You can’t perform that action at this time.
0 commit comments