tools for exporting godot projects via Github Actions
Diffstat (limited to '.github/workflows/callable-export.yml')
| -rw-r--r-- | .github/workflows/callable-export.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/callable-export.yml b/.github/workflows/callable-export.yml index eafc02a..d0f6c4c 100644 --- a/.github/workflows/callable-export.yml +++ b/.github/workflows/callable-export.yml @@ -18,6 +18,10 @@ on: default: "windows linux web android mac" required: true type: string + project-root-path: # the root folder, relative to your repo, or an absolute path. + default: "." + required: false + type: string secrets: android-keystore-base64: # will be filled with andrid debug keystore if left blank required: false @@ -28,6 +32,7 @@ on: env: GODOT_VERSION: ${{ inputs.godot-version }} + PROJECT_PATH: ${{ inputs.project-root-path }} NAME: ${{ inputs.export-name }} jobs: |