From 3dbe22eabc827f3d2840650673cfe3fe0cab4f62 Mon Sep 17 00:00:00 2001 From: aler9 <46489434+aler9@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:46:09 +0200 Subject: [PATCH] fix release workflow --- .github/workflows/release.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 99d663d..3bbbc5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/upload-artifact@v3 with: path: rpicc_32 - name: binaries/rpicc_32 + name: rpicc_32 build_64: runs-on: ubuntu-22.04 @@ -30,7 +30,7 @@ jobs: - uses: actions/upload-artifact@v3 with: path: rpicc_64 - name: binaries/rpicc_64 + name: rpicc_64 github_release: needs: @@ -41,8 +41,13 @@ jobs: steps: - uses: actions/download-artifact@v3 with: - name: binaries - path: binaries + name: rpicc_32 + path: binaries/ + + - uses: actions/download-artifact@v3 + with: + name: rpicc_64 + path: binaries/ - uses: actions/github-script@v6 with: