diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 558a229..4ef6f4d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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: @@ -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: @@ -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: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cbbfc89..760d1c2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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 \ No newline at end of file