diff options
author | Patric Stout <truebrain@openttd.org> | 2021-02-05 20:58:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-05 20:58:15 +0100 |
commit | a667ed945f928a605a7e4c636d62d47eeb8dc6aa (patch) | |
tree | b6dc5a8d7719dabe2b91ee2e56b69c4999defd26 /os | |
parent | 05df7996a4c8039db0785a7e22fe8db59bcc7513 (diff) | |
download | openttd-a667ed945f928a605a7e4c636d62d47eeb8dc6aa.tar.xz |
Add: [Actions] Automatically upload releases to Steam (#8644)
Diffstat (limited to 'os')
-rw-r--r-- | os/steam/release.vdf | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/os/steam/release.vdf b/os/steam/release.vdf new file mode 100644 index 000000000..ab549c388 --- /dev/null +++ b/os/steam/release.vdf @@ -0,0 +1,57 @@ +"AppBuild" +{ + "AppID" "1536610" + "Desc" "@@DESCRIPTION@@" + + "SetLive" "@@BRANCH@@" + + "ContentRoot" "./" + "BuildOutput" "build/" + + "Depots" + { + "1536613" + { + "ContentRoot" "./steam-win32" + "FileMapping" + { + "LocalPath" "*" + "DepotPath" "." + "recursive" "1" + } + } + + "1536612" + { + "ContentRoot" "./steam-win64" + "FileMapping" + { + "LocalPath" "*" + "DepotPath" "." + "recursive" "1" + } + } + + "1536614" + { + "ContentRoot" "./steam-macos" + "FileMapping" + { + "LocalPath" "*" + "DepotPath" "." + "recursive" "1" + } + } + + "1536615" + { + "ContentRoot" "./steam-linux" + "FileMapping" + { + "LocalPath" "*" + "DepotPath" "." + "recursive" "1" + } + } + } +} |