Set signing to no team #212
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 Windows | |
on: | |
push: | |
branches: | |
- master | |
- '*Test*' | |
jobs: | |
Build: | |
runs-on: windows-latest | |
env: | |
project: PopCameraDevice | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
- name: Windows | |
uses: NewChromantics/PopAction_BuildWindows@v1 | |
with: | |
BuildPlatform: x64 | |
BuildConfiguration: Release | |
# would be nice to extract this from visual studio | |
BuildDirectory: Build\Release_x64 | |
project: ${{ env.project }} |