Skip to content

utamori/flutter-asdf-config-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

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/flutter-asdf-config-action@v0.2.3
      - 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/flutter-asdf-config-action@v0.2.3
        with:
          path: 'some-path/.fvm/fvm_config.json'
      - uses: subosito/flutter-action@v2
        with:
          flutter-version: ${{ env.FLUTTER_VERSION }}
          channel: ${{ env.FLUTTER_CHANNEL }}