No description
This repository has been archived on 2024-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2019-12-03 21:03:02 -05:00
action.yml Basic action 2019-11-29 17:44:22 -05:00
Dockerfile Build zips to ./package directory 2019-11-30 21:01:28 -05:00
entrypoint.sh HTML5 Support 2019-12-03 21:03:02 -05:00
LICENSE Initial commit 2019-11-29 15:33:21 -05:00
ReadMe.md Build zips to ./package directory 2019-11-30 21:01:28 -05:00

Build Godot Project

This action builds the godot project in your $GITHUB_WORKSPACE, so that you can easily automate builds.

Usage

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

Environment Variables

  • PROJECT REQUIRED

    Name of the project files to output.

    Eg. godot-project will export to godot-project.exe

  • SUBDIRECTORY

    Subdirectory to export project into.

    Eg. project will export to $GITHUB_WORKSPACE/build/windows/project/godot-project.exe

  • PACKAGE

    Boolean value on whether or not to zip game files. Packages will be placed in the $GITHUB_WORKSPACE/package directory.

    Default Value: false

Credits

This action uses the godot-ci docker image from BARICHELLO