Skip to content

Commit 7ec3a1a

Browse files
committed
ci: fixup for artifact uploading in deltachat-rpc-server.yml
1 parent 19fa86b commit 7ec3a1a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/deltachat-rpc-server.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,31 +88,39 @@ jobs:
8888
uses: "actions/download-artifact@v3"
8989
with:
9090
name: "deltachat-rpc-server-x86_64"
91+
path: "dist/deltachat-rpc-server-x86_64"
9192

9293
- name: Download deltachat-rpc-server-aarch64
9394
uses: "actions/download-artifact@v3"
9495
with:
9596
name: "deltachat-rpc-server-aarch64"
97+
path: "dist/deltachat-rpc-server-aarch64"
9698

9799
- name: Download deltachat-rpc-server-armv7
98100
uses: "actions/download-artifact@v3"
99101
with:
100102
name: "deltachat-rpc-server-armv7"
103+
path: "dist/deltachat-rpc-server-armv7"
101104

102105
- name: Download deltachat-rpc-server-win32.exe
103106
uses: "actions/download-artifact@v3"
104107
with:
105108
name: "deltachat-rpc-server-win32.exe"
109+
path: "dist/deltachat-rpc-server-win32.exe"
106110

107111
- name: Download deltachat-rpc-server-win64.exe
108112
uses: "actions/download-artifact@v3"
109113
with:
110114
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/
111119

112120
- name: Upload binaries to the GitHub release
113121
env:
114122
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
115123
run: |
116124
gh release upload ${{ github.ref_name }} \
117125
--repo ${{ github.repository }} \
118-
deltachat-rpc-server-*
126+
dist/deltachat-rpc-server-*

0 commit comments

Comments
 (0)