Merge pull request #2 from NathanMOlson/windows-2022_v2 #1
This file contains hidden or 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 Windows Dependencies | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| windows-dependencies: | |
| runs-on: windows-2022 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Set up vcpkg | |
| run: | | |
| git clone https://github.com/microsoft/vcpkg.git | |
| .\vcpkg\bootstrap-vcpkg.bat | |
| - name: Install vcpkg dependencies | |
| run: .\vcpkg\vcpkg.exe install --triplet x64-windows | |
| - name: Export vcpkg dependencies | |
| run: .\vcpkg\vcpkg.exe export --zip --output=vcpkg-export --output-dir=. | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: vcpkg-env-x64-windows | |
| path: vcpkg-export.zip |