Fix stale publish output path in docs #6
Workflow file for this run
This file contains hidden or 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, master ] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| global-json-file: global.json | |
| - name: Restore | |
| run: dotnet restore Claudelk.slnx | |
| - name: Build | |
| run: dotnet build Claudelk.slnx --configuration Release --no-restore | |
| - name: Test | |
| run: dotnet test Claudelk.slnx --configuration Release --no-build --logger "console;verbosity=normal" |