Serialization Simplification #62
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: Release | |
# TODO: revert once we have the PR ready | |
on: | |
pull_request: {} | |
jobs: | |
nuget: | |
name: dotnet | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '8.x' | |
dotnet-quality: 'preview' | |
- run: dotnet pack -c Release -o dist | |
- run: dotnet tool update -g docfx | |
- run: docfx docs/docfx.json |