Skip to content

Commit 0bdcacd

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

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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: Upload Artifact
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: ok-ww-executable
30+
path: ok-win-launcher/x64/Release/ok-ww.exe

.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)