mirror of https://github.com/WerWolv/ImHex.git
git: Fix downloading artifacts in steam deploy job
This commit is contained in:
parent
5f6050aaec
commit
902b35e189
|
@ -533,6 +533,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: 🚀 Steam Deployment Nightly
|
name: 🚀 Steam Deployment Nightly
|
||||||
|
|
||||||
|
if: github.event_name == 'push' && github.repository == 'WerWolv/ImHex' && github.ref == 'refs/heads/master'
|
||||||
steps:
|
steps:
|
||||||
- name: 🧰 Checkout
|
- name: 🧰 Checkout
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -547,9 +548,8 @@ jobs:
|
||||||
- name: ⬇️ Download artifacts from latest workflow
|
- name: ⬇️ Download artifacts from latest workflow
|
||||||
uses: dawidd6/action-download-artifact@v2
|
uses: dawidd6/action-download-artifact@v2
|
||||||
with:
|
with:
|
||||||
github_token: ${{secrets.GITHUB_TOKEN}}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
workflow: build.yml
|
commit: ${{ github.event.pull_request.head.sha }}
|
||||||
branch: ${{ github.event.release.target_commitish }}
|
|
||||||
workflow_conclusion: success
|
workflow_conclusion: success
|
||||||
skip_unpack: true
|
skip_unpack: true
|
||||||
|
|
||||||
|
@ -566,14 +566,12 @@ jobs:
|
||||||
mv linux/imhex-${{env.IMHEX_VERSION}}.AppImage linux/imhex.AppImage
|
mv linux/imhex-${{env.IMHEX_VERSION}}.AppImage linux/imhex.AppImage
|
||||||
|
|
||||||
- name: 🗝️ Generate Steam TOTP
|
- name: 🗝️ Generate Steam TOTP
|
||||||
if: github.event_name == 'push' && github.repository == 'WerWolv/ImHex' && github.ref == 'refs/heads/master'
|
|
||||||
uses: CyberAndrii/steam-totp@v1
|
uses: CyberAndrii/steam-totp@v1
|
||||||
id: steam-totp
|
id: steam-totp
|
||||||
with:
|
with:
|
||||||
shared_secret: ${{ secrets.STEAM_SHARED_SECRET }}
|
shared_secret: ${{ secrets.STEAM_SHARED_SECRET }}
|
||||||
|
|
||||||
- name: 💨 Publish Steam Nightly
|
- name: 💨 Publish Steam Nightly
|
||||||
if: github.event_name == 'push' && github.repository == 'WerWolv/ImHex' && github.ref == 'refs/heads/master'
|
|
||||||
uses: game-ci/steam-deploy@main
|
uses: game-ci/steam-deploy@main
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.STEAM_USERNAME }}
|
username: ${{ secrets.STEAM_USERNAME }}
|
||||||
|
|
Loading…
Reference in New Issue