Skip to content

Bump SixLabors.ImageSharp in /GraceAttorney.AssetCompiler #85

Bump SixLabors.ImageSharp in /GraceAttorney.AssetCompiler

Bump SixLabors.ImageSharp in /GraceAttorney.AssetCompiler #85

Workflow file for this run

name: Windows
on: [push]
env:
GRACE_ATTORNEY_SOLUTION: GraceAttorney.Framework.sln
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
# adapted from https://www.timheuer.com/blog/building-net-framework-apps-using-github-actions/
- name: Setup MSBuild Path
uses: warrenbuckley/Setup-MSBuild@v1
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Restore NuGet Packages
run: nuget restore ${{ env.GRACE_ATTORNEY_SOLUTION }}
- name: Build Game
run: msbuild ${{ env.GRACE_ATTORNEY_SOLUTION }} /p:Configuration=Release /m
- name: Upload Game
uses: actions/upload-artifact@v2
with:
name: GraceAttorney-Win
path: ${{ github.workspace }}\GraceAttorney\bin\Release\net461