Skip to content

Commit ffdfebf

Browse files
committed
add submodule and build for launcher exe
1 parent 520404d commit ffdfebf

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build VSCode Solution
2+
3+
on:
4+
push:
5+
branches:
6+
- test_build_exe
7+
8+
jobs:
9+
build:
10+
runs-on: windows-latest
11+
12+
steps:
13+
- name: Checkout Code
14+
uses: actions/checkout@v4
15+
with:
16+
submodules: true
17+
18+
- name: Set up MSBuild
19+
uses: microsoft/setup-msbuild@v2
20+
21+
- name: Build Solution
22+
run:
23+
cd ok-win-launcher
24+
msbuild ok-launcher.sln /p:Configuration=Release
25+
26+
- name: Archive Built Executable
27+
run: powershell Compress-Archive -Path x64/Release/ok-ww.exe -DestinationPath ok-ww.zip
28+
29+
- name: Upload Artifact
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: ok-ww-executable
33+
path: ok-ww.zip

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "ok-win-launcher"]
2+
path = ok-win-launcher
3+
url = https://github.com/ok-oldking/ok-win-launcher.git

ok-win-launcher

Submodule ok-win-launcher added at d4abd50

0 commit comments

Comments
 (0)