Merge branch 'layout' #139
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |