Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

RIP 2018-2024

RIP 2018-2024 #65

Workflow file for this run

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