From a6bd4bd7b211f30dd76383a24fc34ab2ba363f79 Mon Sep 17 00:00:00 2001 From: mikBighne98 <102468247+mikBighne98@users.noreply.github.com> Date: Sat, 24 Dec 2022 22:58:00 +0530 Subject: [PATCH] Minor bug fix --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index ef56123..b88c2e8 100644 --- a/action.yml +++ b/action.yml @@ -42,16 +42,16 @@ runs: echo "SPACE_ACCESS_TOKEN=${{ inputs.access_token }}" >> $GITHUB_ENV - name: Push changes to Deta Space - if: ${{ inputs.space_push == "true" }} + if: ${{ inputs.space_push == 'true' }} shell: script -q -e -c "bash {0}" run: | space push --id "${{ inputs.project_id }}" - name: Create a release on Deta Space - if: ${{ inputs.space_release == "true" }} + if: ${{ inputs.space_release == 'true' }} shell: script -q -e -c "bash {0}" run: | - if [[ ${{ inputs.list_on_discovery }} == "true" ]]; then + if [[ ${{ inputs.list_on_discovery }} == true ]]; then space release --id "${{ inputs.project_id }}" --version "${{ inputs.release_version }}" --listed --confirm else space release --id "${{ inputs.project_id }}" --version "${{ inputs.release_version }}" --confirm