Github Action to deploy a game to Steam. Multi-platform alternative to game-ci/steam-deploy
This action assumes you are registered as a partner with Steam.
Create a specialised builder account that only has access to Edit App Metadata
and Publish App Changes To Steam
.
https://partner.steamgames.com/doc/sdk/uploading#Build_Account
In order to upload a build, this action is assuming that you have created that build in a previous step
or job
.
For an example of how to do this in Unity, see Unity Actions.
The exported artifact will be used in the next step.
In order to configure this action, configure a step that looks like the following:
(The parameters are explained below)
jobs:
deployToSteam:
runs-on: ubuntu-latest
steps:
- uses: game-ci/steam-deploy@v2
with:
username: ${{ secrets.STEAM_USERNAME }}
password: ${{ secrets.STEAM_PASSWORD }}
configVdf: ${{ secrets.STEAM_CONFIG_VDF}}
ssfnFileName: ${{ secrets.STEAM_SSFN_FILE_NAME }}
ssfnFileContents: ${{ secrets.STEAM_SSFN_FILE_CONTENTS }}
appId: 1234560
buildDescription: v1.2.3
rootPath: build
depot1Path: StandaloneWindows64
depot2Path: StandaloneLinux64
nobaseline: true
releaseBranch: prerelease
The username of the Steam Build Account that you created in setup step 1.
The password of the Steam Build Account that you created in setup step 1.
Deploying to Steam requires using Multi-Factor Authentication (MFA) through Steam Guard . This means that simply using username and password isn't enough to authenticate with Steam. However, it is possible to go through the MFA process only once by setting up GitHub Secrets for configVdf, ssfnFileName, and ssfnFileContents with these steps:
- Install Valve's offical steamcmd on your local machine. All following steps will also be done on your local machine.
- Try to login with
steamcmd +login <username> <password> +quit
, which may prompt for the MFA code. If so, type in the MFA code that was emailed to your builder account's email address. - Validate that the MFA process is complete by running
steamcmd +login <username> <password> +quit
again. It should not ask for the MFA code again. - The folder from which you run
steamcmd
will now contain an updatedconfig/config.vdf
file. Usecat config/config.vdf | base64 > config_base64.txt
to encode the file. Copy the contents ofconfig_base64.txt
to a GitHub SecretSTEAM_CONFIG_VDF
. - Find the SSFN file, depending on your platform. Windows: The
steamcmd
folder will also contain two files of which the names look likessfn<numbers>
. One of them is a hidden file. Find that hidden file and use that hidden file as the correct SSFN file for the following steps. Linux: The SSFN file will be in thesteamcmd
folder. Mac: The SSFN will be at~/Library/Application\ Support/Steam/
. - Copy the name of the SSFN file to a GitHub Secret
STEAM_SSFN_FILE_NAME
. - Use
cat <ssfnFileName> | base64 > ssfn_base64.txt
to encode the contents of the SSFN file. Copy the encoded contents insidessfn_base64.txt
to a GitHub Secret calledSTEAM_SSFN_FILE_CONTENTS
.
The identifier of your app on steam. You can find it on your dashboard.
The identifier for this specific build, which helps you identify it in steam.
It is recommended to use the semantic version of the build for this.
The root path to your builds. This is the base of which depots will search your files.
Where X is any number between 1 and 9 (inclusive both).
The relative path following your root path for the files to be included in this depot.
If your appId is 125000 then the depots 125001 ... 125009 will be assumed.
The branch within steam that this build will be automatically put live on.
Note that the default
branch has been observed to not work as a release branch, presumably because it is potentially dangerous.