Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Dec 14, 2024
1 parent fd8d3f4 commit 65e7798
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
windows:
needs: filter
if: needs.filter.outputs.windows_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call'
if: ${{ needs.filter.outputs.windows_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call' }}
runs-on: windows-latest
timeout-minutes: 30
strategy:
Expand All @@ -76,7 +76,7 @@ jobs:
macos:
needs: filter
if: needs.filter.outputs.macos_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call'
if: ${{ needs.filter.outputs.macos_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call' }}
runs-on: macos-${{ matrix.macos-version }}
timeout-minutes: 30
strategy:
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
ios:
needs: filter
if: needs.filter.outputs.ios_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call'
if: ${{ needs.filter.outputs.ios_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call' }}
runs-on: macos-14
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:

android:
needs: filter
if: needs.filter.outputs.android_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call'
if: ${{ needs.filter.outputs.android_changed == 'true' || needs.filter.outputs.common_changed == 'true' || github.event_name == 'workflow_call' }}
timeout-minutes: 60
runs-on: macos-13
strategy:
Expand Down

0 comments on commit 65e7798

Please sign in to comment.