diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4f18b80..908b4d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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