Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 1.02 KB

README.md

File metadata and controls

31 lines (27 loc) · 1.02 KB

flutter-asdf-config-action

An action that parses an ASDF config file into environment variables which can then be used to configure the flutter-action.

This action was created with reference to the Flutter FVM config actionavailable in the GitHub Marketplace.

Usage

Basic usage

    steps:
      - uses: actions/checkout@v3
      - uses: utamori/[email protected]
      - uses: subosito/flutter-action@v2
        with:
          flutter-version: ${{ env.FLUTTER_VERSION }}
          channel: ${{ env.FLUTTER_CHANNEL }}

Custom config path

    steps:
      - uses: actions/checkout@v3
      - uses: utamori/[email protected]
        with:
          path: 'some-path/.fvm/fvm_config.json'
      - uses: subosito/flutter-action@v2
        with:
          flutter-version: ${{ env.FLUTTER_VERSION }}
          channel: ${{ env.FLUTTER_CHANNEL }}