-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (35 loc) · 1005 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build
on: [push, pull_request]
env:
DOTNET_NOLOGO: 1
NUGET_CERT_REVOCATION_MODE: offline
jobs:
windows:
name: Windows
runs-on: windows-latest
steps:
- name: Configure Git
run: git config --system core.longpaths true
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
8.0.x
- name: Restore
run: dotnet restore src/RazorBlade.sln
- name: Build
run: dotnet build --configuration Release --no-restore src/RazorBlade.sln
- name: Pack
run: dotnet pack --configuration Release --no-build src/RazorBlade.sln
- name: Test
run: dotnet test --configuration Release --no-build src/RazorBlade.sln
- name: Upload NuGet
uses: actions/upload-artifact@v3
with:
name: NuGet
path: output/*.nupkg