mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
19 lines
520 B
YAML
19 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
|