Skip to content

Releases: subosito/flutter-action

v2.21.0

24 Jun 21:51
fd55f4c

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.20.0...v2.21.0

v2.20.0

10 Jun 09:08
395322a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2...v2.20.0

v2.19.0

24 Mar 20:59
e938fdf

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.18.0...v2.19.0

v2.18.0

03 Dec 20:08
f2c4f66

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.17.0...v2.18.0

v2.17.0

23 Nov 23:09
74af56c

Choose a tag to compare

This release adds support for older yq versions, as added in PR #329. Thanks for contributing, @ThomasAunvik!

v2.16.0

02 Apr 12:29
44ac965

Choose a tag to compare

This release introduces the dry-run option, which lets you only get action outputs without downloading Flutter. This can be useful if you want to set up some automations to be notified about new Flutter releases.

steps:
  - name: Clone repository
  - uses: actions/checkout@v4
  - name: Set up Flutter
    uses: subosito/flutter-action@v2
    id: flutter-action
    with:
      channel: stable
      dry-run: true
  - run: |
      # Always print the latest stable version.
      echo CHANNEL=${{ steps.flutter-action.outputs.CHANNEL }}
      echo VERSION=${{ steps.flutter-action.outputs.VERSION }}
    shell: bash

Thank you @kzrnm for suggesting and implementing it in #270!

v2.15.0

01 Apr 02:16
3d80492

Choose a tag to compare

Hi! I'm Bartek and I'm the new maintainer of this action. I promise to take good care of it.

This release introduces the flutter-version-file option (implemented in #290), which lets you easily centralize Flutter version in a single place – your pubspec.yaml file:

You can use it like this:

steps:
  - name: Clone repository
    uses: actions/checkout@v4
  - name: Set up Flutter
    uses: subosito/flutter-action@v2
    with:
      channel: stable
      flutter-version-file: pubspec.yaml # path to pubspec.yaml

Please note that for this to work, you need to specify exact Flutter version in pubspec.yaml:

environment:
  dart: ">=3.3.0 <4.0.0"
  flutter: 3.19.0 # This must be exact! No ranges allowed.

Apart from that, some minor README updates and code cleanup were performed.

v2.14.0

20 Mar 05:17
v2.14.0
1c5eb12

Choose a tag to compare

fix: pub cache path

v2.13.0

01 Mar 09:19
v2.13.0
62f096c

Choose a tag to compare

auto set architecture; caching improvement

v2.12.0

01 Nov 11:05
v2.12.0
2783a3f

Choose a tag to compare

fixes script permission and temp dir on mac hosted