mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
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
|
|
default: 'any'
|
|
channel:
|
|
description: 'The Flutter build release channel'
|
|
required: false
|
|
default: 'stable'
|
|
cache:
|
|
description: 'Cache the Flutter SDK'
|
|
required: false
|
|
cache-key:
|
|
description: 'Identifier for the Flutter SDK cache'
|
|
required: false
|
|
default: 'flutter'
|
|
cache-path:
|
|
description: 'Flutter SDK cache path'
|
|
required: false
|
|
default: ${{ runner.tool_cache }}/flutter
|
|
architecture:
|
|
description: 'The architecture of Flutter SDK executable (x64 or arm64)'
|
|
required: false
|
|
default: 'x64'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- if: ${{ inputs.cache == 'true' }}
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ inputs.cache-path }}
|
|
key: ${{ inputs.cache-key }}-${{ inputs.channel }}-${{ inputs.flutter-version }}
|
|
- run: $GITHUB_ACTION_PATH/setup.sh -c "${{ inputs.cache-path }}" ${{ inputs.channel }} ${{ inputs.flutter-version }} ${{ inputs.architecture }}
|
|
shell: bash
|