Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
784 B

name: .NET Build
2 years ago
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
2 years ago
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
2 years ago
run: dotnet build --configuration Release --output out --no-restore
2 years ago
- name: Upload Artifacts
if: ${{ github.event_name == 'push' }}
2 years ago
uses: actions/upload-artifact@v2
with:
name: build
path: |
2 years ago
out