Skip to main content

Uploading client builds

Future improvement

We are working on the upload feature available directly from our developer console.

To provide a better and faster development experience right now, we are sharing a simple script which uploads to PlayPad.
To run it, our support will provide an access key in the form of a JSON file which needs to be placed next the to script file.

tip

Contact us on Elympics Developers Discord's playpad-key-requests channel to receive a key. The key will be named after game, for example awesome-game.json

Script dependencies

Script is compatible with all platforms where bash is available.
Works directly on macOS and Linux distros.
On Windows machines you can use WSL or git bash available via installer.

Scripts depend also on Google Cloud SDK, please follow install steps from Google Cloud documentation.

Script install

  1. Get a script from GitHub Gist
  2. If your game name is awesome-game then put your key awesome-game.json next to upload.sh.
  3. Make sure in same folder there is also a directory named build.

Your folder should look like this:

./awesome-game.json
./build
./upload.sh

Script usage

There are two modes to use - copy and sync, if you aren't sure - use copy.

  1. Upload a server build inside the Unity Editor.
  2. Create WebGL build using Brotli compression or none.
    Be careful of using the same name twice to reupload a build, since it could result in your browser remembering previous version and a need to clear your browser cache (for example CTRL + SHIFT + R on Chrome).
    Instead, we encourage to use versioning for builds by creating builds with meaningfull names, e.g. using semantic versioning.
  3. Copy game files from your WebGL build subfolder Build to the build folder. Note that base of their names (name of the directory the game was built into) will be used as a version indicator when composing the game link.
  4. Run a script to copy all files from build folder to the PlayPad, it will overwrite files with the same file names (in such case remember to clear cache when trying to test your build).
bash upload.sh copy awesome-game build
warning

Using sync command will remove all previously uploaded files!
Your current files in build folder will replace all existing ones.

Example output from bash upload.sh

upload.sh <task> <args>
Tasks:
1 copy
2 sync

usage: upload.sh copy/sync [game name] [build dir]
copy - upload files to cloud, overwrite already existing files in cloud
sync - remove all files from cloud and upload to cloud current files from disk

example of usage:
bash upload.sh copy good-game build_dir
bash upload.sh sync awesome-game builds/awesome

Task completed in 0m0.035s

Playing your game

After the successful upload you can play a game on PlayPad.