File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change 23
23
24
24
- uses : actions/upload-artifact@v4
25
25
with :
26
+ name : artifacts-amd64
26
27
path : build/**/*.deb
27
28
28
29
49
50
50
51
- uses : actions/upload-artifact@v4
51
52
with :
53
+ name : artifacts-arm64
52
54
path : build/**/*.deb
53
55
54
56
68
70
69
71
- uses : actions/upload-artifact@v4
70
72
with :
73
+ name : artifacts-appimage
71
74
path : build/**.AppImage
72
75
73
76
87
90
88
91
- uses : actions/upload-artifact@v4
89
92
with :
93
+ name : artifacts-windows
90
94
path : build/windows/**.7z
91
95
92
96
@@ -97,6 +101,10 @@ jobs:
97
101
98
102
steps :
99
103
- uses : actions/download-artifact@v4
104
+ with :
105
+ path : artifacts
106
+ pattern : artifacts-*
107
+ merge-multiple : true
100
108
101
109
- name : List artifacts
102
110
run : ls -R
@@ -105,6 +113,6 @@ jobs:
105
113
uses : softprops/action-gh-release@v2
106
114
with :
107
115
files : |
108
- artifact /**/**.deb
109
- artifact /**.AppImage
110
- artifact /**.7z
116
+ artifacts /**/**.deb
117
+ artifacts /**.AppImage
118
+ artifacts /**.7z
You can’t perform that action at this time.
0 commit comments