flutter-action icon indicating copy to clipboard operation
flutter-action copied to clipboard

Flutter environment for use in GitHub Actions. It works on Linux, Windows, and macOS.

Results 41 flutter-action issues
Sort by recently updated
recently updated
newest added

``` check-settings: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - id: flutter-action - uses: subosito/flutter-action@v2 with: channel: 'stable' - run: | echo CACHE-PATH=${{ steps.flutter-action.outputs.CACHE-PATH }} echo CACHE-KEY=${{ steps.flutter-action.outputs.CACHE-KEY }} echo CHANNEL=${{...

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.

My flutter project will compile and run perfectly on Android and iOS from our development MacBooks. But it fails the build test on GitHub Workflows only for iOS: ``` name:...

I often have the following code in my workflows ```yaml - name: Set up Flutter uses: subosito/flutter-action@v2 with: flutter-version: ${{ matrix.flutter-version }} channel: ${{ matrix.flutter-channel }} - name: Preload Flutter...

It could be useful to separate Flutter engine & Dart engine cache and pub and allow to invalidate pub caches as needed. ### Actual behavior 1) **First run with caching.**...

`subosito/flutter-action@v2` fails with: ``` /home/github-runner/actions-runner/_work/_actions/subosito/flutter-action/v2/setup.sh: line 137: HOME: unbound variable ``` I can add `HOME` to env of course, but maybe [setup.sh](https://github.com/subosito/flutter-action/blob/main/setup.sh#L137) can be modified to use `~/.pub-cache`?

https://github.com/osociety/vernet/actions/runs/8645064405/job/23701563442 `Cache not found for input keys: flutter-pub-linux-stable-3.19.5-x64-300451adae589accbece3490f4396f10bdf15e6e-, flutter-pub-linux-stable-3.19.5-x64-300451adae589accbece3490f4396f10bdf15e6e-, flutter-pub-linux-stable-3.19.5-x64-300451adae589accbece3490f4396f10bdf15e6e`

It would be nice if you could use [fvm](https://fvm.app/) version files as source for the `flutter-version-file` parameter.

As a plugin maintainer, I want to run my CI to test/analyze/format my plugin against Flutter version it supports. For example, let's say my plugin supports at least Flutter 3.10.0,...

Allow for specifying Flutter version like this: ```yaml - name: Set up Flutter uses: subosito/flutter-action@v2 with: channel: stable flutter-version: 3.19.x ``` in addition to the aleady supported: ```yaml - name:...