Review build warnings #36
Workflow file for this run
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 OBS-Express | |
on: [ push, pull_request ] | |
jobs: | |
build-windows: | |
name: Build | |
runs-on: windows-2022 | |
env: | |
CMAKE_GENERATOR: 'Visual Studio 17 2022' | |
CMAKE_SYSTEM_VERSION: '10.0.18363.657' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: 'Add msbuild to PATH' | |
uses: microsoft/[email protected] | |
- name: Configure and build obs-studio | |
shell: pwsh | |
run: ./configure-obs.ps1 | |
- name: Build obs-express | |
shell: pwsh | |
run: ./pack-release.ps1 | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
path: obs-express.zip |