@@ -88,31 +88,39 @@ jobs:
88
88
uses : " actions/download-artifact@v3"
89
89
with :
90
90
name : " deltachat-rpc-server-x86_64"
91
+ path : " dist/deltachat-rpc-server-x86_64"
91
92
92
93
- name : Download deltachat-rpc-server-aarch64
93
94
uses : " actions/download-artifact@v3"
94
95
with :
95
96
name : " deltachat-rpc-server-aarch64"
97
+ path : " dist/deltachat-rpc-server-aarch64"
96
98
97
99
- name : Download deltachat-rpc-server-armv7
98
100
uses : " actions/download-artifact@v3"
99
101
with :
100
102
name : " deltachat-rpc-server-armv7"
103
+ path : " dist/deltachat-rpc-server-armv7"
101
104
102
105
- name : Download deltachat-rpc-server-win32.exe
103
106
uses : " actions/download-artifact@v3"
104
107
with :
105
108
name : " deltachat-rpc-server-win32.exe"
109
+ path : " dist/deltachat-rpc-server-win32.exe"
106
110
107
111
- name : Download deltachat-rpc-server-win64.exe
108
112
uses : " actions/download-artifact@v3"
109
113
with :
110
114
name : " deltachat-rpc-server-win64.exe"
115
+ path : " dist/deltachat-rpc-server-win64.exe"
116
+
117
+ - name : List downloaded artifacts
118
+ run : ls -l dist/
111
119
112
120
- name : Upload binaries to the GitHub release
113
121
env :
114
122
GITHUB_TOKEN : " ${{ secrets.GITHUB_TOKEN }}"
115
123
run : |
116
124
gh release upload ${{ github.ref_name }} \
117
125
--repo ${{ github.repository }} \
118
- deltachat-rpc-server-*
126
+ dist/ deltachat-rpc-server-*
0 commit comments