This repository was archived by the owner on Jul 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +16
-11
lines changed Expand file tree Collapse file tree 1 file changed +16
-11
lines changed Original file line number Diff line number Diff line change 5
5
6
6
name : Game
7
7
8
- on :
9
- push :
10
- branches : [ "master" ]
11
- paths :
12
- - common/**
13
- - devtools/**
14
- - game/**
15
- - public/**
16
- - responserules/**
17
- pull_request :
18
- branches : [ "master" ]
8
+ on : release
19
9
20
10
env :
21
11
# Path to the solution file relative to the root of the project.
34
24
runs-on : windows-latest
35
25
steps :
36
26
- uses : actions/checkout@v4
27
+
28
+ # On Windows runners, let's ensure to have the Developer Command Prompt environment setup correctly.
29
+ # As used here the Developer Command Prompt created is targeting x64 and using the default the Windows SDK.
30
+ - uses : ilammy/msvc-dev-cmd@v1
31
+
32
+ - name : Build
33
+ working-directory : ${{env.GITHUB_WORKSPACE}}
34
+ # Add additional options to the MSBuild command line here (like platform or verbosity level).
35
+ # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
36
+ run : cmake -S . -B ./BUILD
37
+
38
+ Linux :
39
+ runs-on : ubuntu-latest
40
+ steps :
41
+ - uses : actions/checkout@v4
37
42
38
43
- name : Build
39
44
working-directory : ${{env.GITHUB_WORKSPACE}}
You can’t perform that action at this time.
0 commit comments