File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 17
17
working-directory : ${{github.workspace}}/main
18
18
steps :
19
19
- name : Get AV
20
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
21
21
with :
22
22
path : main
23
23
- name : Get MSBuild
@@ -26,20 +26,18 @@ jobs:
26
26
run : >
27
27
curl https://www.rarewares.org/files/ogg/oggenc2.88-1.3.7-x64.zip --output oggenc.zip &&
28
28
unzip oggenc.zip -d .
29
+ - name : Configure CMake
30
+ run : cmake -Bbuild -DCMAKE_BUILD_TYPE=Release
29
31
- name : Build AV
30
- run : msbuild build\VisualStudio\ArrowVortex.vcxproj /p:Configuration=Release /p:Platform=x64
32
+ run : cmake -- build build --config Release
31
33
- name : Collect into a directory
32
34
run : |
33
35
mkdir AV
34
- cd AV
35
- cp -r ../bin/assets .
36
- cp -r ../bin/noteskins .
37
- cp -r ../bin/settings .
38
- cp ../bin/ArrowVortex.exe .
39
- cp ../oggenc2.exe .
36
+ cmake --install build --config Release --prefix ./AV
37
+ mv oggenc2.exe AV/bin
40
38
- name : Upload artifact
41
39
uses : actions/upload-artifact@v4
42
40
with :
43
41
name : AV
44
- path : main/AV/
42
+ path : main/AV/bin
45
43
if-no-files-found : error
You can’t perform that action at this time.
0 commit comments