Uploading client builds
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.
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
- Get a script from GitHub Gist
- If your game name is
awesome-game
then put your keyawesome-game.json
next toupload.sh
. - 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.
- Upload a server build inside the Unity Editor.
- 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 exampleCTRL + SHIFT + R
on Chrome).
Instead, we encourage to use versioning for builds by creating builds with meaningfull names, e.g. using semantic versioning. - 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. - 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
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.