Skip to content

Commit

Permalink
Add NuGet restore to the MSBuild call from github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquesh committed Apr 3, 2023
1 parent 309e9cc commit 8a03a79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
uses: actions/checkout@v2

- name: Build 32-bit binary
run: msbuild /m /p:Configuration=Release /p:Platform=x86 build\foo_openlyrics.sln
run: msbuild /r /m /p:Configuration=Release /p:Platform=x86 build\foo_openlyrics.sln

- name: Build 64-bit binary
run: msbuild /m /p:Configuration=Release /p:Platform=x64 build\foo_openlyrics.sln
run: msbuild /r /m /p:Configuration=Release /p:Platform=x64 build\foo_openlyrics.sln

- name: Pack binary into archive
shell: bash
Expand Down

0 comments on commit 8a03a79

Please sign in to comment.