This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
RIP 2018-2024 #65
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 CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '6.0.x' | |
include-prerelease: true | |
- name: Build Backend | |
run: dotnet build -c Release -r linux-x64 SDSetupBackend | |
- name: Build Updater | |
run: dotnet build -c Release -r linux-x64 SDSetupUpdater | |
- name: Build Blazor | |
run: dotnet build -c Release SDSetupBlazor |