Make sure that the undefined
values are sent as null. Make sure we …
#158
Workflow file for this run
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: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore | |
working-directory: src | |
- name: Build | |
run: dotnet build --no-restore -c Release | |
working-directory: src | |
- name: Pack | |
run: dotnet pack -c Release -o ../nupkgs --no-build | |
working-directory: src | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./nupkgs/* | |