All Projects → subosito → Flutter Action

subosito / Flutter Action

Licence: mit
Flutter environment for use in actions. It works on Linux, Windows, and macOS.

Programming Languages

typescript
32286 projects

flutter-action

This action sets up a flutter environment for use in actions. It works on Linux, Windows, and macOS.

Usage

steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
  with:
    java-version: '12.x'
- uses: subosito/[email protected]
  with:
    flutter-version: '1.22.4'
- run: flutter pub get
- run: flutter test
- run: flutter build apk

Build for iOS too (macOS only):

jobs:
  build:
    runs-on: macos-latest
    steps:
    - uses: actions/[email protected]
    - uses: actions/[email protected]
      with:
        java-version: '12.x'
    - uses: subosito/[email protected]
      with:
        flutter-version: '1.22.4'
    - run: flutter pub get
    - run: flutter test
    - run: flutter build apk
    - run: flutter build ios --release --no-codesign

Use app bundle, instead of APK:

steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
  with:
    java-version: '12.x'
- uses: subosito/[email protected]
  with:
    flutter-version: '1.22.4'
- run: flutter pub get
- run: flutter test
- run: flutter build appbundle

Build for the web:

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/[email protected]
    - uses: subosito/[email protected]
      with:
        channel: beta
    - run: flutter config --enable-web
    - run: flutter pub get
    - run: flutter test
    - run: flutter build web

Use latest release for particular channel:

steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
  with:
    java-version: '12.x'
- uses: subosito/[email protected]v1
  with:
    channel: 'stable' # or: 'beta' or 'dev'
- run: flutter pub get
- run: flutter test
- run: flutter build apk

Use latest release for particular version and/or channel:

steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
  with:
    java-version: '12.x'
- uses: subosito/[email protected]
  with:
    flutter-version: '1.22.x' # you can use 1.22
    channel: 'dev' # optional, default to: 'stable'
- run: flutter pub get
- run: flutter test
- run: flutter build apk

Matrix Testing:

jobs:
  test:
    name: Test on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
    steps:
      - uses: actions/[email protected]
      - uses: actions/[email protected]
        with:
          java-version: '12.x'
      - uses: subosito/[email protected]
        with:
          flutter-version: '1.20.2'
          channel: 'beta'
      - run: dart --version
      - run: flutter --version
      - run: flutter pub get
      - run: flutter test
      - run: flutter build apk
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].