Bump SixLabors.ImageSharp in /GraceAttorney.AssetCompiler #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |