Skip to content

Commit

Permalink
Install steam in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
veteran29 committed Dec 20, 2024
1 parent 876cd50 commit 410cdc2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/steam.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

on:
push: ~

jobs:
install:
runs-on: windows-2025
steps:
- name: 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: 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 }}

0 comments on commit 410cdc2

Please sign in to comment.