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 9676426..5b6972b 100644 --- a/.github/actions/get-export-name/action.yml +++ b/.github/actions/get-export-name/action.yml @@ -23,5 +23,5 @@ runs: echo "::error file=${PROJECT_PATH}/export_presets.cfg,title=Missing Configuration::No export for ${{ inputs.platform }}." exit 1 ) - echo "::set-output name=export-name::$(python get-export-name.py "${{ inputs.platform }}")" + echo "export-name=$(python get-export-name.py "${{ inputs.platform }}")" >> "$GITHUB_OUTPUT" shell: bash |