|
@@ -1,9 +1,6 @@
|
|
|
name: Build godot-cpp
|
|
|
description: Build godot-cpp with the provided options.
|
|
|
|
|
|
-env:
|
|
|
- GODOT_CPP_BRANCH: 4.4
|
|
|
-
|
|
|
inputs:
|
|
|
bin:
|
|
|
description: Path to the Godot binary.
|
|
@@ -16,6 +13,10 @@ inputs:
|
|
|
description: The SCons cache path.
|
|
|
default: ${{ github.workspace }}/.scons_cache/
|
|
|
type: string
|
|
|
+ godot-cpp-branch:
|
|
|
+ description: The godot-cpp branch.
|
|
|
+ default: master
|
|
|
+ type: string
|
|
|
|
|
|
runs:
|
|
|
using: composite
|
|
@@ -25,7 +26,7 @@ runs:
|
|
|
with:
|
|
|
submodules: recursive
|
|
|
repository: godotengine/godot-cpp
|
|
|
- ref: ${{ env.GODOT_CPP_BRANCH }}
|
|
|
+ ref: ${{ inputs.godot-cpp-branch }}
|
|
|
path: godot-cpp
|
|
|
|
|
|
- name: Extract API
|