File tree 2 files changed +39
-0
lines changed
2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ "main" ]
6
+ pull_request :
7
+ branches : [ "main" ]
8
+
9
+ env :
10
+ BUILD_TYPE : Release
11
+
12
+ jobs :
13
+ build :
14
+ runs-on : windows-latest
15
+
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+
19
+ - name : Setup MSVC toolchain
20
+ uses : ilammy/msvc-dev-cmd@v1
21
+
22
+ - name : Install CMake
23
+ uses : lukka/get-cmake@latest
24
+
25
+ - name : Build project
26
+ run : |
27
+ cmake -B build
28
+ cd build
29
+ cmake --build . --config Release
30
+
31
+ - name : Upload build artifacts
32
+
33
+ with :
34
+ name : ci-build
35
+ path : build/Release
36
+ retention-days : 14
37
+
Original file line number Diff line number Diff line change 1
1
# DarkMode Mod for UnityEditor on Windows
2
+ <a style =" text-decoration :none " href =" https://github.com/0x7c13/UnityEditor-DarkMode/actions/workflows/ci.yml " ><img src =" https://img.shields.io/github/actions/workflow/status/0x7c13/UnityEditor-DarkMode/actions/workflows/ci.yml " alt =" Size " /></a >
3
+
2
4
A fully working dark mode mod for Unity Editor on Windows with:
3
5
- Dark title bar
4
6
- Dark menu bar
You can’t perform that action at this time.
0 commit comments