Skip to content

Switch to brandedoutcast/publish-nuget action #131

Switch to brandedoutcast/publish-nuget action

Switch to brandedoutcast/publish-nuget action #131

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
BUILD_CONFIG: Release
SOLUTION: AcrylicUI.sln
PROJECT: AcrylicUI\AcrylicUI.csproj
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Restore dependencies
run: nuget restore ${{env.SOLUTION}}
- name: Setup .NET
uses: actions/setup-dotnet@v1
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore