tools for exporting godot projects via Github Actions
Diffstat (limited to '.github/actions/setup-godot/action.yml')
| -rw-r--r-- | .github/actions/setup-godot/action.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/actions/setup-godot/action.yml b/.github/actions/setup-godot/action.yml index a59dd4c..6726604 100644 --- a/.github/actions/setup-godot/action.yml +++ b/.github/actions/setup-godot/action.yml @@ -7,8 +7,8 @@ runs: - name: Check if clean id: clean run: | - if [[ -z $(find . -mindepth 1 -maxdepth 1) ]]; then echo "::set-output name=clean::true"; - else echo "::set-output name=clean::false"; fi + if [[ -z $(find . -mindepth 1 -maxdepth 1) ]]; then echo "clean=true" >> "$GITHUB_OUTPUT"; + else echo "clean=false" >> "$GITHUB_OUTPUT"; fi shell: bash - name: Checkout |