mirror of https://github.com/WerWolv/ImHex.git
git: Download only necessary artifacts in steam deploy job
This commit is contained in:
parent
902b35e189
commit
7d56c64a9c
|
@ -545,13 +545,23 @@ jobs:
|
||||||
project_version=`cat ImHex/VERSION`
|
project_version=`cat ImHex/VERSION`
|
||||||
echo "IMHEX_VERSION=$project_version" >> $GITHUB_ENV
|
echo "IMHEX_VERSION=$project_version" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: ⬇️ Download artifacts from latest workflow
|
- name: ⬇️ Download Windows Artifact
|
||||||
uses: dawidd6/action-download-artifact@v2
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
name: Windows Portable
|
||||||
commit: ${{ github.event.pull_request.head.sha }}
|
path: .
|
||||||
workflow_conclusion: success
|
|
||||||
skip_unpack: true
|
- 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
|
- name: 🗜️ Setup steam depots
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue