Skip to content

Merge rc into release (#810) #2167

Merge rc into release (#810)

Merge rc into release (#810) #2167

Workflow file for this run

name: .NET Core
on:
push:
paths:
- 'api/**.cs'
- '.github/workflows/dotnetcore.yml'
jobs:
buildwindows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build with dotnet
working-directory: ./api
run: dotnet build --configuration Release
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Build with dotnet
working-directory: ./api
run: dotnet build --configuration Release