File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 27
27
run : |
28
28
cd ./bin/tests/build
29
29
./app
30
+
31
+ - name : compress output
32
+ shell : bash
33
+ run : tar -cvf ./macos.tar -C ./output .
34
+
35
+ - name : upload artifacts
36
+ uses : actions/upload-artifact@v4
37
+ with :
38
+ name : macos_output
39
+ path : ./macos.tar
Original file line number Diff line number Diff line change 36
36
run : |
37
37
cd ./bin/tests/build
38
38
./app
39
+
40
+ - name : compress output
41
+ shell : bash
42
+ run : tar -cvf ./linux.tar -C ./output .
43
+
44
+ - name : upload artifacts
45
+ uses : actions/upload-artifact@v4
46
+ with :
47
+ name : linux_output
48
+ path : ./linux.tar
Original file line number Diff line number Diff line change 30
30
run : |
31
31
cd ./bin/tests/build
32
32
./app.exe
33
+
34
+ - name : compress output
35
+ shell : bash
36
+ run : zip -m ./windows.zip ./output/**
37
+
38
+ - name : upload artifacts
39
+ uses : actions/upload-artifact@v4
40
+ with :
41
+ name : windows_output
42
+ path : ./windows.zip
You can’t perform that action at this time.
0 commit comments