Skip to content

Instantly share code, notes, and snippets.

@colinbellino
Last active February 2, 2024 00:14
Show Gist options
  • Save colinbellino/9c0804d63971d9b0c3024aaaa2c194dc to your computer and use it in GitHub Desktop.
Save colinbellino/9c0804d63971d9b0c3024aaaa2c194dc to your computer and use it in GitHub Desktop.
Simple Godot build and deploy script
godot --headless --export-debug 'Windows' ./builds/Windows/game.exe
butler push ./builds/Windows colinbellino/game_name:win
godot --headless --export-debug 'Linux' ./builds/Linux/game
butler push ./builds/Linux colinbellino/game_name:linux
godot --headless --export-debug 'Mac' ./builds/Mac/game.app
butler push ./builds/Mac/builds/Linux colinbellino/game_name:linux
godot --headless --export-debug 'Web' ./builds/Web/index.html
butler push ./builds/Web colinbellino/game_name:web
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment