git: Download all artifacts to their own folders
This commit is contained in:
parent
7d56c64a9c
commit
582858c0d4
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
@ -549,31 +549,23 @@ jobs:
|
|||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Windows Portable
|
name: Windows Portable
|
||||||
path: .
|
path: ./steam/windows
|
||||||
|
|
||||||
- name: ⬇️ Download macOS Artifact
|
- name: ⬇️ Download macOS Artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: macOS Portable
|
name: macOS Portable
|
||||||
path: .
|
path: ./steam/macos
|
||||||
|
|
||||||
- name: ⬇️ Download Linux Artifact
|
- name: ⬇️ Download Linux Artifact
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: Linux AppImage
|
name: Linux AppImage
|
||||||
path: .
|
path: ./steam/linux
|
||||||
|
|
||||||
- name: 🗜️ Setup steam depots
|
- name: 🗜️ Setup steam depots
|
||||||
run: |
|
run: |
|
||||||
mkdir windows
|
mv steam/linux/imhex-${{env.IMHEX_VERSION}}.AppImage steam/linux/imhex.AppImage
|
||||||
unzip "Windows Portable.zip" -d windows
|
|
||||||
|
|
||||||
mkdir macos
|
|
||||||
unzip "macOS Portable.zip" -d macos
|
|
||||||
|
|
||||||
mkdir linux
|
|
||||||
unzip "Linux AppImage.zip" -d linux
|
|
||||||
mv linux/imhex-${{env.IMHEX_VERSION}}.AppImage linux/imhex.AppImage
|
|
||||||
|
|
||||||
- name: 🗝️ Generate Steam TOTP
|
- name: 🗝️ Generate Steam TOTP
|
||||||
uses: CyberAndrii/steam-totp@v1
|
uses: CyberAndrii/steam-totp@v1
|
||||||
@ -589,7 +581,7 @@ jobs:
|
|||||||
totp: ${{ steps.steam-totp.outputs.code }}
|
totp: ${{ steps.steam-totp.outputs.code }}
|
||||||
appId: 2186040
|
appId: 2186040
|
||||||
buildDescription: v${{ env.IMHEX_VERSION }} - ${{ github.sha }}
|
buildDescription: v${{ env.IMHEX_VERSION }} - ${{ github.sha }}
|
||||||
rootPath: .
|
rootPath: ./steam
|
||||||
depot1Path: windows
|
depot1Path: windows
|
||||||
depot2Path: macos
|
depot2Path: macos
|
||||||
depot3Path: linux
|
depot3Path: linux
|
||||||
|
Loading…
Reference in New Issue
Block a user