You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Build Godot
v1.1.0
This action builds the godot project in your $GITHUB_WORKSPACE
, so that you can easily automate builds.
This action will create a build
folder with subdirectories for linux, windows, and mac. You must have the export preset configured for each platform to successfully export.
Example:
steps:
- uses: josephbmanley/build-godot-action@master
env:
PROJECT: godot-project
SUBDIRECTORY: project
-
Name of the project files to output.
Eg.
godot-project
will export togodot-project.exe
-
Subdirectory to export project into.
Eg.
project
will export to$GITHUB_WORKSPACE/build/windows/project/godot-project.exe
This action uses the godot-ci docker image from BARICHELLO