Files
flutter-action/action.yml
2022-01-06 07:48:39 +00:00

20 lines
520 B
YAML

name: 'Flutter action'
description: 'Setup your runner with Flutter environment'
author: 'Alif Rachmawadi'
branding:
icon: 'maximize'
color: 'blue'
inputs:
flutter-version:
description: 'The Flutter version to make available on the path'
required: false
channel:
description: 'The Flutter build release channel'
required: false
default: 'stable'
runs:
using: 'composite'
steps:
- run: $GITHUB_ACTION_PATH/setup.sh ${{ inputs.channel }} ${{ inputs.flutter-version }}
shell: bash