Skip to content

Commit

Permalink
Try multi-line condition in if
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-magda committed Oct 3, 2023
1 parent 2ed8d1c commit 6734e20
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,10 @@ jobs:

build-ios:
needs: [files-changed, swiftlint]
if: ${{ always() && needs.swiftlint.result != 'failure' && (needs.files-changed.outputs.ios == 'true' || needs.files-changed.outputs.shared == 'true') }}
if: |
${{ always()
&& needs.swiftlint.result != 'failure'
&& (needs.files-changed.outputs.ios == 'true' || needs.files-changed.outputs.shared == 'true') }}
name: Build iOS
runs-on: macos-13
timeout-minutes: 30
Expand Down

0 comments on commit 6734e20

Please sign in to comment.