Adapt to recent changes in Win11 wrt monitor topology #136
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
on: [push] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [Release, Debug] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: microsoft/[email protected] | |
- name: vcpkg build | |
id: vcpkg | |
uses: johnwason/vcpkg-action@v4 | |
with: | |
manifest-dir: ${{ github.workspace }} # Set to directory containing vcpkg.json | |
# pkgs: nlohmann-json boost-asio boost-optional boost-utility boost-date-time boost-beast wintoast openssl | |
triplet: x64-windows-static | |
token: ${{ github.token }} | |
- run: vcpkg integrate install | |
- run: msbuild LGTVCompanion.sln /p:VcpkgEnableManifest=true | |
env: | |
Configuration: ${{ matrix.configuration }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: LGTVCompanion-${{ matrix.configuration }} | |
path: x64/${{ matrix.configuration }}/ | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: LGTVCompanion-Setup-${{ matrix.configuration }} | |
path: LGTV Companion Setup/bin/${{ matrix.configuration }}/ |