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

Update README.md

Update README.md #11

Workflow file for this run

name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
name: Zephyrus-Control-Center_DEBUG
path: Slate/bin/Debug/net7.0
if-no-files-found: error
retention-days: 30