add submodule and build for launcher exe #1
Workflow file for this run
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 VSCode Solution | |
on: | |
push: | |
branches: | |
- test_build_exe | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build Solution | |
run: msbuild ok-launcher.sln /p:Configuration=Release | |
- name: Archive Built Executable | |
run: powershell Compress-Archive -Path x64/Release/ok-ww.exe -DestinationPath ok-ww.zip | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ok-ww-executable | |
path: ok-ww.zip |