tools for exporting godot projects via Github Actions
Diffstat (limited to '.github/actions/get-export-name/action.yml')
| -rw-r--r-- | .github/actions/get-export-name/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/get-export-name/action.yml b/.github/actions/get-export-name/action.yml index c3b413a..2cec900 100644 --- a/.github/actions/get-export-name/action.yml +++ b/.github/actions/get-export-name/action.yml @@ -19,7 +19,7 @@ runs: run: | cd "${{ env.PROJECT_PATH }}" wget -nv 'https://raw.githubusercontent.com/bend-n/godot-actions/main/.github/actions/get-export-name/get-export-name.py' -O get-export-name.py - python get-export-name.py "${GODOT_VERSION:0:1}" "${{ inputs.platform }}" || ( + python get-export-name.py "${GODOT_VERSION:0:1}" "${{ inputs.platform }}" >/dev/null || ( echo "::error file=${PROJECT_PATH}/export_presets.cfg,title=Missing Configuration::No export for ${{ inputs.platform }}." exit 1 ) |