From 044bd75999bbe75b6976eac7a12bb37b75412d12 Mon Sep 17 00:00:00 2001 From: Katy Baulch <46493669+katybaulch@users.noreply.github.com> Date: Thu, 28 Mar 2024 10:01:49 +0000 Subject: [PATCH] Remove double quotes --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5b89d9c..e022e29 100644 --- a/action.yml +++ b/action.yml @@ -85,8 +85,8 @@ runs: shell: bash id: determine_next_tag run: | - if [[ "${{ (inputs.pr_body != '' && inputs.pr_number != '') == 'true' }}" ]]; then + if [[ ${{ (inputs.pr_body != '' && inputs.pr_number != '') == 'true' }} ]]; then echo "new_tag=${{ steps.determine_next_tag_from_pr_event.outputs.new_tag }}" >> "$GITHUB_OUTPUT" - elif [[ "${{ (inputs.pr_body == '' && inputs.pr_number == '') }}" == 'true' ]]; then + elif [[ ${{ (inputs.pr_body == '' && inputs.pr_number == '') }} == 'true' ]]; then echo "new_tag=${{ steps.determine_next_tag_retrospectively.outputs.new_tag }}" >> "$GITHUB_OUTPUT" fi