Skip to content

Commit

Permalink
Fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Feb 2, 2024
1 parent 9f725c7 commit 0b42f5d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build_appstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,9 @@ jobs:
env:
is-official-release: ${{ env.destination == 'appstore' && (startsWith(github.ref_name, 'release') || startsWith(github.ref_name, 'hotfix')) }}
run: |
upload_to=
if [[ "${{ env.is-official-release }}" == "true" ]]; then
upload_to=s3
else if [[ "${{ env.asana-task-url }}" ]]; then
else if [[ -n "${{ env.asana-task-url }}" ]]; then
upload_to=asana
fi
echo "upload-to=${upload_to}" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 0b42f5d

Please sign in to comment.