TgBot++: Add README.md #21
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
name: Build TgBot++ Client (Windows) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up MSBuild | |
uses: microsoft/[email protected] | |
- name: Setup vcpkg | |
run: | | |
git clone https://github.com/microsoft/vcpkg | |
.\vcpkg\bootstrap-vcpkg.bat | |
.\vcpkg\vcpkg integrate install | |
.\vcpkg\vcpkg install zlib abseil openssl boost | |
- name: Build solution | |
run: | | |
cd clientapp/windows/TgBotClient | |
msbuild TgBotClient.sln /p:Configuration=Release |