Sum rewards rather than count (#157) #243
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: .NET Core Desktop | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
env: | |
Configuration: 'Release' | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
- name: Restore the solution | |
run: dotnet restore | |
- name: Publish | |
run: | | |
dotnet build --configuration $env:Configuration --no-restore | |
dotnet publish -c $env:Configuration -r win-x64 --self-contained false | |
- name: Archive production artifacts | |
if: ${{ success() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: RaidCrawler | |
path: | | |
./RaidCrawler.WinForms/bin/x64/Release/net7.0-windows/win-x64/publish/ |