Merge pull request #2 from Deadcello/silly-new-icon #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- uses: geode-sdk/build-geode-mod@main | ||
with: | ||
# Which version of the SDK to use. | ||
# Set to 'nightly' for latest commit, 'latest' for latest release | ||
# Default: latest | ||
sdk: '' | ||
# Which CLI version to use. | ||
# Default: latest | ||
cli: '' | ||
# Extra arguments passed to CMake when configuring. Not required. | ||
configure-args: '' | ||
# Extra arguments passed to CMake when building. Not required. | ||
build-args: '' | ||
# Which build configuration to use. | ||
# Default: Release | ||
build-config: '' | ||
# Whether to export PDB files for Windows builds. Not required. | ||
# Default: false | ||
export-pdb: '' | ||
# Path to the project which to build. Defaults to current directory. | ||
path: '' | ||
# Set this to true if you plan on merging .geode files later. See the README for more info. | ||
# Default: false | ||
combine: '' | ||
# Geode target to build for. Can be either "Win64", "MacOS", "Android32" or "Android64". | ||
# Defaults to what is appropriate for the current platform, so: | ||
# Defaults to Win64 on windows runners | ||
# Defaults to MacOS on macOS runners | ||
# Defaults to Android64 on linux runners | ||
target: '' | ||
# What repository to use for bindings. Must be in the format "user/repo". Not required. | ||
bindings: '' | ||
# Which commit/branch to use for bindings. Defaults to latest commit in main branch. Not required. | ||
bindings-ref: '' | ||
# The android min SDK version to target. Defaults to 23. Not required. | ||
android-min-sdk: '' | ||
# Whether to use Link Time Optimization, improving build size at the cost of build time. | ||
# Default: true | ||
use-lto: '' |