0ca1161ddb
Fixes the tag used in the example.
28 lines
726 B
Markdown
28 lines
726 B
Markdown
# Build Godot
|
|
|
|
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:
|
|
|
|
```yaml
|
|
steps:
|
|
- uses: josephbmanley/build-godot-action@v1.0.0
|
|
env:
|
|
PROJECT: godot-project
|
|
```
|
|
|
|
### Environment Variables
|
|
|
|
- #### PROJECT **REQUIRED**
|
|
|
|
Name of the project files to output.
|
|
|
|
Eg. `godot-project` will export to `godot-project.exe`
|
|
|
|
## Credits
|
|
|
|
This action uses the [godot-ci](https://github.com/aBARICHELLO/godot-ci) docker image from [BARICHELLO](https://github.com/aBARICHELLO)
|