1
0
mirror of synced 2024-11-12 02:00:52 +01:00

git: Download only necessary artifacts in steam deploy job

This commit is contained in:
WerWolv 2022-10-28 10:29:40 +02:00
parent 902b35e189
commit 7d56c64a9c

View File

@ -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: |