File tree Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Expand file tree Collapse file tree 3 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ [submodule "ok-win-launcher "]
2
+ path = ok-win-launcher
3
+ url = https://github.com/ok-oldking/ok-win-launcher.git
You can’t perform that action at this time.
0 commit comments