From e0aed32ab42c41c8d9609482ce45914e7113e814 Mon Sep 17 00:00:00 2001 From: Mike A Date: Sat, 28 Oct 2023 20:24:31 +0200 Subject: [PATCH] Download artifacts by name --- .github/workflows/build.yml | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b41647..7bde182 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -68,9 +68,37 @@ jobs: Collect-Artifacts: runs-on: ubuntu-22.04 + needs: [Build-PC, Build-RPI] steps: - - name: Download artifacts + - name: Download ubuntu-22.04-x64 uses: actions/download-artifact@v3 + with: + name: ubuntu-22.04-x64 + path: RiiTag-RPC_Ubuntu22 + + - name: Download ubuntu-20.04-x64 + uses: actions/download-artifact@v3 + with: + name: ubuntu-20.04-x64 + path: RiiTag-RPC_Ubuntu20 + + - name: Download macos-12-x64 + uses: actions/download-artifact@v3 + with: + name: macos-12-x64 + path: RiiTag-RPC_MacOS + + - name: Download windows-2022-x64 + uses: actions/download-artifact@v3 + with: + name: windows-2022-x64 + path: RiiTag-RPC_Windows + + - name: Download rpi-4b-aarch64 + uses: actions/download-artifact@v3 + with: + name: rpi-4b-aarch64 + path: RiiTag-RPC_Rpi4B - name: Display structure of downloaded files run: ls -R