File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,25 @@ jobs:
17
17
run : cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=RelWithDebInfo
18
18
- name : Build and package
19
19
run : cmake --build build --config RelWithDebInfo --target package
20
-
20
+ - name : Upload ZIP as Artifact
21
+ uses : actions/upload-artifact@v2
22
+ with :
23
+ name : easy-debug-view-zip
24
+ path : build/easy-debug-view.zip
25
+
21
26
release :
22
27
name : Release
23
28
runs-on : windows-latest
24
29
needs : build
25
30
steps :
31
+ - name : Download ZIP Artifact
32
+ uses : actions/download-artifact@v2
33
+ with :
34
+ name : easy-debug-view-zip
35
+ path : build
36
+
26
37
- name : Release
27
38
uses : softprops/action-gh-release@v2
28
39
with :
29
40
draft : true
30
- files : ${{github.workspace}}/ build/easy-debug-view.zip
41
+ files : build/easy-debug-view.zip
You can’t perform that action at this time.
0 commit comments