diff --git a/.github/workflows/upload-steam.yml b/.github/workflows/upload-steam.yml --- a/.github/workflows/upload-steam.yml +++ b/.github/workflows/upload-steam.yml @@ -17,8 +17,25 @@ jobs: runs-on: ubuntu-20.04 steps: - - name: Download all bundles + - name: Download bundle (Windows x86) + uses: actions/download-artifact@v3 + with: + name: openttd-windows-x86 + + - name: Download bundle (Windows x64) uses: actions/download-artifact@v3 + with: + name: openttd-windows-x64 + + - name: Download bundle (MacOS) + uses: actions/download-artifact@v3 + with: + name: openttd-macos-universal + + - name: Download bundle (Linux) + uses: actions/download-artifact@v3 + with: + name: openttd-linux-generic - name: Setup steamcmd uses: CyberAndrii/setup-steamcmd@v1