Skip to content

add submodule and build for launcher exe #1

add submodule and build for launcher exe

add submodule and build for launcher exe #1

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