File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 76
76
cd build;
77
77
ant clean;
78
78
ant build
79
+ - name : Add artifact
80
+ uses : actions/upload-artifact@v3
81
+ if : {{ github.ref == 'ref/head/main' }}
82
+ with :
83
+ name : linux
84
+ path : ./build/linux/work
79
85
mac :
80
86
runs-on : macos-latest
81
87
name : Build Mac
@@ -111,6 +117,12 @@ jobs:
111
117
cd build;
112
118
ant clean;
113
119
ant build
120
+ - name : Add artifact
121
+ uses : actions/upload-artifact@v3
122
+ if : {{ github.ref == 'ref/head/main' }}
123
+ with :
124
+ name : macos
125
+ path : ./build/macos/work
114
126
windows :
115
127
runs-on : windows-latest
116
128
name : Build Windows
@@ -129,3 +141,9 @@ jobs:
129
141
cd build;
130
142
ant clean;
131
143
ant build
144
+ - name : Add artifact
145
+ uses : actions/upload-artifact@v3
146
+ if : {{ github.ref == 'ref/head/main' }}
147
+ with :
148
+ name : windows
149
+ path : ./build/windows/work
You can’t perform that action at this time.
0 commit comments