File tree Expand file tree Collapse file tree 1 file changed +18
-19
lines changed Expand file tree Collapse file tree 1 file changed +18
-19
lines changed Original file line number Diff line number Diff line change 80
80
env :
81
81
PREFIX : ${{github.workspace}}
82
82
run : make -j4 -C toolchain install release release-libs V=1
83
+
84
+ - name : Upload CEdev
85
+ uses : actions/upload-artifact@v2
86
+ with :
87
+ name : CEdev-${{runner.os}}
88
+ path : CEdev
89
+ - name : Upload Libraries
90
+ uses : actions/upload-artifact@v2
91
+ with :
92
+ name : clibs
93
+ path : toolchain/clibs.8xg
94
+ - name : Upload Windows Installer
95
+ if : runner.os == 'Windows'
96
+ uses : actions/upload-artifact@v2
97
+ with :
98
+ name : installer-${{runner.os}}
99
+ path : toolchain\release\CEdev${{env.EXE}}
100
+
83
101
- name : Build Examples
84
102
run : make -j4 -C ${{env.CEDEV}}/examples V=1
85
103
@@ -147,22 +165,3 @@ jobs:
147
165
- name : Remove Secrets
148
166
if : always()
149
167
run : cmake -E rm -rf secrets
150
-
151
- - name : Upload CEdev
152
- uses : actions/upload-artifact@v2
153
- with :
154
- name : CEdev-${{runner.os}}
155
- path : CEdev
156
-
157
- - name : Upload Libraries
158
- uses : actions/upload-artifact@v2
159
- with :
160
- name : clibs
161
- path : toolchain/clibs.8xg
162
-
163
- - name : Upload Windows Installer
164
- if : runner.os == 'Windows'
165
- uses : actions/upload-artifact@v2
166
- with :
167
- name : installer-${{runner.os}}
168
- path : toolchain\release\CEdev${{env.EXE}}
You can’t perform that action at this time.
0 commit comments