Update continuous-integration.yml #173
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@v4 | |
- uses: microsoft/setup-msbuild@v2 | |
- name: vcpkg build | |
id: vcpkg | |
uses: johnwason/vcpkg-action@v6 | |
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@v4 | |
with: | |
name: LGTVCompanion-${{ matrix.configuration }} | |
path: x64/${{ matrix.configuration }}/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: LGTVCompanion-Setup-${{ matrix.configuration }} | |
path: LGTV Companion Setup/bin/${{ matrix.configuration }}/ |