add submodule and build for launcher exe #5
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: | | |
cp icon.ico ok-win-launcher\icon.ico | |
cd ok-win-launcher | |
msbuild ok-launcher.sln /p:Configuration=Release | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ok-ww-executable | |
path: ok-win-launcher/x64/Release/ok-ww.exe |