Skip to content

Commit

Permalink
Install Steam Client before packing
Browse files Browse the repository at this point in the history
  • Loading branch information
veteran29 committed Dec 20, 2024
1 parent a021c6c commit eee473c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/workbench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,18 @@ jobs:
STEAM_USERNAME: ${{ secrets.STEAM_USERNAME }}
STEAM_PASSWORD: ${{ secrets.STEAM_PASSWORD }}

- name: Steam Client Install
run: |
$url = 'https://cdn.akamai.steamstatic.com/client/installer/SteamSetup.exe'
Invoke-RestMethod -Uri $url -OutFile SteamSetup.exe
.\SteamSetup.exe /S /D=C:\Steam
- name: Steam Client Login
run: |
C:\Steam\steam.exe -silent -login ${env:STEAM_USERNAME} ${env:STEAM_PASSWORD}
env:
STEAM_USERNAME: ${{ secrets.STEAM_USERNAME }}
STEAM_PASSWORD: ${{ secrets.STEAM_PASSWORD }}

- name: Checkout
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit eee473c

Please sign in to comment.