From 7d56c64a9cdc8b808dde1a7fa82db137e00d72d6 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Fri, 28 Oct 2022 10:29:40 +0200 Subject: [PATCH] git: Download only necessary artifacts in steam deploy job --- .github/workflows/build.yml | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 21edac7d9..214c8fd62 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -545,13 +545,23 @@ jobs: project_version=`cat ImHex/VERSION` echo "IMHEX_VERSION=$project_version" >> $GITHUB_ENV - - name: ⬇️ Download artifacts from latest workflow - uses: dawidd6/action-download-artifact@v2 + - name: ⬇️ Download Windows Artifact + uses: actions/download-artifact@v3 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - commit: ${{ github.event.pull_request.head.sha }} - workflow_conclusion: success - skip_unpack: true + name: Windows Portable + path: . + + - name: ⬇️ Download macOS Artifact + uses: actions/download-artifact@v3 + with: + name: macOS Portable + path: . + + - name: ⬇️ Download Linux Artifact + uses: actions/download-artifact@v3 + with: + name: Linux AppImage + path: . - name: 🗜️ Setup steam depots run: |