builds godot
Diffstat (limited to '.github/actions/build-godot/action.yml')
| -rw-r--r-- | .github/actions/build-godot/action.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/actions/build-godot/action.yml b/.github/actions/build-godot/action.yml index fea9be7..d9a1453 100644 --- a/.github/actions/build-godot/action.yml +++ b/.github/actions/build-godot/action.yml @@ -11,13 +11,14 @@ inputs: default: https://github.com/godotengine/godot required: true tools: - description: Editor / templates + description: To build the tools (aka the editor) required: true platform: description: Platform to build for + default: x11 required: true target: - description: Target + description: Target (debug|release_debug|release) required: true flags: description: Flags to pass to the build @@ -39,6 +40,7 @@ runs: libxinerama-dev libgl1-mesa-dev libglu-dev libasound2-dev \ libpulse-dev libudev-dev libxi-dev libxrandr-dev yasm git clone --depth 1 "$URL" -b "$BRANCH" godot + cd godot && wget -nv 'https://raw.githubusercontent.com/bend-n/godot-2d-builds/main/.github/custom.py' env: BRANCH: ${{ inputs.branch }} URL: ${{ inputs.url }} |