Take a finished build to a live Steam store page. Two tracks run in parallel and both must be
approved before release: the store page (presence) and the build (SteamPipe upload +
the release checklists). This skill is the operational checklist; deep build-script,
CI/CD, and troubleshooting detail lives in references/steampipe-build-scripts.md.
steam_appid.txt, the Steamworks SDK tools/ContentBuilder, app_build_*.vdf,
steamcmd, "publish on Steam", "depot", "set build live".When not to use: publishing on itch.io (use itch-publish); writing the
Steamworks API in-game (achievements/cloud/overlay live in engine SDK integrations, not
here); store/financial advice (pricing strategy, tax) — direct the user to Steamworks docs
and their own counsel.
tools/ContentBuilder/.Security note: never commit account passwords or the
config.vdflogin token to the repo. See the CI/CD section in the reference for the supported token workflow.
.vdf in Patterns below;
for multi-depot/multi-platform apps use depot scripts (see the reference). The script maps
local files into depots and names where build output/logs go.steamcmd once to self-update, then run the build
(Patterns). steamcmd chunks files (~1 MB), uploads only changed chunks, and registers a
global BuildID.https://partner.steamgames.com/apps/builds/<AppID>,
pick the build, Preview Change, then Set Build Live Now for a branch. Test on a
beta branch first (see references/steampipe-build-scripts.md for branch setup).default (manually) or
shipping to a beta branch first. See references/steampipe-build-scripts.md.tools/ContentBuilder/
builder/ steamcmd.exe (Windows) <- run once to bootstrap
builder_linux/ steamcmd (Linux)
builder_osx/ steamcmd (macOS)
content/ <- your final, runnable build goes here (the files players get)
output/ build logs + chunk cache (safe to delete; speeds up re-uploads)
scripts/ <- your *.vdf build scripts live here
app_build_1000.vdf// AppID 1000 with one depot (1001): upload everything under ../content recursively.
// VDF is Valve KeyValues: "key" "value", braces for nesting. Adjust IDs to your app.
"AppBuild"
{
"AppID" "1000" // your App ID
"Desc" "1.0.0 launch build" // internal only; visible in Your Builds
"ContentRoot" "..\content\" // root of files to upload (relative to this file)
"BuildOutput" "..\output\" // logs + chunk cache
"Depots"
{
"1001" // your Depot ID
{
"FileMapping"
{
"LocalPath" "*" // all files from ContentRoot
"DepotPath" "." // mapped to the depot root
"recursive" "1" // include subfolders
}
}
}
}
REM Run from the SDK. Bootstrap once, then build. Use a build account, not your admin login.
tools\ContentBuilder\builder\steamcmd.exe ^
+login <build_account> <password> ^
+run_app_build ..\scripts\app_build_1000.vdf ^
+quit
What happens: steamcmd self-updates -> logs in -> for each depot, hashes files into ~1 MB
chunks -> uploads only NEW chunks -> writes a depot manifest -> finishes with a global
BuildID. The build is NOT live yet; set it live per the workflow above.
// Add to the AppBuild block to validate file mappings without uploading:
"Preview" "1" // outputs logs + a file manifest into BuildOutput only
// And to auto-set live on a BETA branch after a successful build (never 'default'):
"SetLive" "beta-qa"
default branch cannot be set live automatically. SetLive only works for a
beta branch; you must set the default (customer) build live by hand in App Admin. Plan
releases around this.status = 6 on build. The build account lacks permission for the App ID, or
ContentRoot/LocalPath points at the wrong (empty) path.config.vdf Steam Guard token and account password are
secrets. Keep them out of the repo; use the CI workflow in the reference.FileExclusion/FileProperties,
beta-branch setup, the CI/CD login-token workflow, and the SteamPipe troubleshooting table,
read references/steampipe-build-scripts.md.partner.steamgames.com/doc/sdk/uploading),
"Release Process" (/doc/store/releasing), "Branches (Betas)" (/doc/store/application/branches),
"Depots" (/doc/store/application/depots).itch-publish — the same game shipped on itch.io with butler (often done alongside Steam).game-jam / prototype-fast — earlier stages of the same project's lifecycle.