| Website | Discord |
|---|
Sets up the Godot Engine from the official GitHub releases for Linux, macOS, or Windows.
repo: e.g.godotengine/godotversion: e.g.4.4.1-stable(required)release-tag: Override in case release name is differnet from version. If empty defaults to version. (default: ``)bin-path: Path for binaries to be installed to (default:godot-bin)download_editor: Download the Godot Editor binary (true/false, default:true)download_template: Download export templates (true/false, default:false)mono: Download Mono version (C# support) (true/false, default:false)
- Sets the
GODOT4environment variable to the path of the Godot binary. - Adds the binary's directory to the
PATH.
For normal Godot Release:
- name: Setup Godot
uses: appsinacup/setup-godot-action@main
with:
version: '4.4.1-stable'
- name: Check Godot version
run: |
$GODOT4 --versionFor custom Godot Release:
- name: Setup Godot (2D Optimized)
uses: appsinacup/setup-godot-action@main
with:
version: '4.4.1-stable'
release-tag: '3d-disable'
repo: 'appsinacup/action_godot_builder'