From 7ec3a1a9a2f477a61a2e035ca95e62035e66dc0f Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 21 Mar 2023 23:17:15 +0000 Subject: [PATCH] ci: fixup for artifact uploading in deltachat-rpc-server.yml --- .github/workflows/deltachat-rpc-server.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deltachat-rpc-server.yml b/.github/workflows/deltachat-rpc-server.yml index fdb3a5cf4..dd074702e 100644 --- a/.github/workflows/deltachat-rpc-server.yml +++ b/.github/workflows/deltachat-rpc-server.yml @@ -88,26 +88,34 @@ jobs: uses: "actions/download-artifact@v3" with: name: "deltachat-rpc-server-x86_64" + path: "dist/deltachat-rpc-server-x86_64" - name: Download deltachat-rpc-server-aarch64 uses: "actions/download-artifact@v3" with: name: "deltachat-rpc-server-aarch64" + path: "dist/deltachat-rpc-server-aarch64" - name: Download deltachat-rpc-server-armv7 uses: "actions/download-artifact@v3" with: name: "deltachat-rpc-server-armv7" + path: "dist/deltachat-rpc-server-armv7" - name: Download deltachat-rpc-server-win32.exe uses: "actions/download-artifact@v3" with: name: "deltachat-rpc-server-win32.exe" + path: "dist/deltachat-rpc-server-win32.exe" - name: Download deltachat-rpc-server-win64.exe uses: "actions/download-artifact@v3" with: name: "deltachat-rpc-server-win64.exe" + path: "dist/deltachat-rpc-server-win64.exe" + + - name: List downloaded artifacts + run: ls -l dist/ - name: Upload binaries to the GitHub release env: @@ -115,4 +123,4 @@ jobs: run: | gh release upload ${{ github.ref_name }} \ --repo ${{ github.repository }} \ - deltachat-rpc-server-* + dist/deltachat-rpc-server-*