Last active
February 2, 2024 00:14
-
-
Save colinbellino/9c0804d63971d9b0c3024aaaa2c194dc to your computer and use it in GitHub Desktop.
Simple Godot build and deploy script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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