Skip to content

Commit

Permalink
Remove double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
katybaulch committed Mar 28, 2024
1 parent a7212a2 commit 044bd75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 044bd75

Please sign in to comment.