|
|
@ -93,18 +93,18 @@ runs:
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
repository: SteamRE/DepotDownloader
|
|
|
|
repository: SteamRE/DepotDownloader
|
|
|
|
tag: DepotDownloader_${{inputs.depotdownloader-version}}
|
|
|
|
tag: DepotDownloader_${{inputs.depotdownloader-version}}
|
|
|
|
fileName: depotdownloader-${{inputs.depotdownloader-version}}.zip
|
|
|
|
fileName: depotdownloader-windows-x64.zip
|
|
|
|
|
|
|
|
|
|
|
|
- name: Extract DepotDownloader_${{inputs.depotdownloader-version}}
|
|
|
|
- name: Extract DepotDownloader_${{inputs.depotdownloader-version}}
|
|
|
|
uses: DuckSoft/extract-7z-action@v1.0
|
|
|
|
uses: DuckSoft/extract-7z-action@v1.0
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
pathSource: depotdownloader-${{inputs.depotdownloader-version}}.zip
|
|
|
|
pathSource: depotdownloader-windows-x64.zip
|
|
|
|
pathTarget: depotdownloader
|
|
|
|
pathTarget: depotdownloader
|
|
|
|
|
|
|
|
|
|
|
|
- name: Download Game Binaries (Stable)
|
|
|
|
- name: Download Game Binaries (Stable)
|
|
|
|
run: >-
|
|
|
|
run: >-
|
|
|
|
if ('${{inputs.stable-version}}' -eq '') { Return };
|
|
|
|
if ('${{inputs.stable-version}}' -eq '') { Return };
|
|
|
|
dotnet depotdownloader/DepotDownloader.dll -app ${{inputs.steam-appid}} -depot ${{inputs.steam-depotid}} -beta ${{inputs.stable-version}} -username ${{inputs.steam-login}}
|
|
|
|
depotdownloader/DepotDownloader.exe -app ${{inputs.steam-appid}} -depot ${{inputs.steam-depotid}} -beta ${{inputs.stable-version}} -username ${{inputs.steam-login}}
|
|
|
|
-password ${{inputs.steam-password}} -os windows -osarch 64 -filelist ${{inputs.steam-filefilter}} -dir ${{inputs.stable-directory}};
|
|
|
|
-password ${{inputs.steam-password}} -os windows -osarch 64 -filelist ${{inputs.steam-filefilter}} -dir ${{inputs.stable-directory}};
|
|
|
|
shell: pwsh
|
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
|
|
|
|