Workflow vcpkg dependencies

This commit is contained in:
AeonLucid
2021-10-30 19:36:32 +02:00
parent 73ffbb5021
commit 9fb8cebc2f
+10 -2
View File
@@ -23,11 +23,19 @@ jobs:
- name: Restore NuGet
run: dotnet restore ${{env.PROJ_LAUNCHER}}
- name: Install minhook
run: vcpkg install minhook:x64-windows-static
- name: Install Prospect.Agent dependencies
run: |
vcpkg integrate install
vcpkg install minhook:x64-windows-static
- name: Build Prospect.Agent
run: msbuild /m /p:Configuration=Release /p:Platform=x64 ${{env.PROJ_AGENT}}
- name: Build Prospect.Launcher
run: dotnet publish -o ./build-app -r win-x64 -c Release -v minimal ${{env.PROJ_LAUNCHER}}
- uses: actions/upload-artifact@v2
with:
name: Prospect.Launcher
path: ./build-app/
retention-days: 14