Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
natsuk4ze committed Dec 14, 2024
1 parent c136850 commit 1ca86bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
windows:
needs: filter
if: ${{ needs.filter.outputs.windows_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all == 'true' }}
if: ${{ needs.filter.outputs.windows_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all }}
runs-on: windows-latest
timeout-minutes: 30
strategy:
Expand All @@ -82,7 +82,7 @@ jobs:
macos:
needs: filter
if: ${{ needs.filter.outputs.macos_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all == 'true' }}
if: ${{ needs.filter.outputs.macos_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all }}
runs-on: macos-${{ matrix.macos-version }}
timeout-minutes: 30
strategy:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
ios:
needs: filter
if: ${{ needs.filter.outputs.ios_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all == 'true' }}
if: ${{ needs.filter.outputs.ios_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all }}
runs-on: macos-14
timeout-minutes: 60
strategy:
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:

android:
needs: filter
if: ${{ needs.filter.outputs.android_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all == 'true' }}
if: ${{ needs.filter.outputs.android_changed == 'true' || needs.filter.outputs.common_changed == 'true' || inputs.run_all }}
timeout-minutes: 60
runs-on: macos-13
strategy:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,5 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- name: Dry run
run: flutter pub publish --dry-run
- name: Publish
run: dart pub publish

0 comments on commit 1ca86bb

Please sign in to comment.