Compile with MSBuild and VS 2022 for Windows #7
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: | |
workflow_dispatch: | |
jobs: | |
compile: | |
name: Try to compile on windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
# https://github.com/microsoft/setup-msbuild | |
- name: Run MSBuild | |
shell: cmd | |
run: MSBuild.exe build_installer.proj /t:rebuild /p:Configuration=release' | |
- name: upload output dir | |
uses: actions/upload-artifact@v3 | |
with: | |
name: sdna_plus_output | |
path: output/ | |
retention-days: 5 |