mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
run prettier
This commit is contained in:
parent
d3969fb775
commit
54a6ca61b1
1 changed files with 29 additions and 29 deletions
58
action.yml
58
action.yml
|
@ -1,59 +1,59 @@
|
|||
name: 'Flutter action'
|
||||
description: 'Setup your runner with Flutter environment'
|
||||
author: 'Alif Rachmawadi'
|
||||
name: Set up Flutter
|
||||
description: Setup your runner with Flutter environment
|
||||
author: Alif Rachmawadi
|
||||
branding:
|
||||
icon: 'maximize'
|
||||
color: 'blue'
|
||||
icon: maximize
|
||||
color: blue
|
||||
inputs:
|
||||
flutter-version:
|
||||
description: 'The Flutter version to make available on the path'
|
||||
description: The Flutter version to make available on the path
|
||||
required: false
|
||||
default: 'any'
|
||||
default: any
|
||||
channel:
|
||||
description: 'The Flutter build release channel'
|
||||
description: The Flutter build release channel
|
||||
required: false
|
||||
default: 'stable'
|
||||
default: stable
|
||||
cache:
|
||||
description: 'Cache the Flutter SDK'
|
||||
description: Cache the Flutter SDK
|
||||
required: false
|
||||
default: 'false'
|
||||
default: "false"
|
||||
cache-key:
|
||||
description: 'Identifier for the Flutter SDK cache'
|
||||
description: Identifier for the Flutter SDK cache
|
||||
required: false
|
||||
default: 'flutter-:os:-:channel:-:version:-:arch:-:hash:'
|
||||
default: "flutter-:os:-:channel:-:version:-:arch:-:hash:"
|
||||
pub-cache-key:
|
||||
description: 'Identifier for the Dart .pub-cache cache'
|
||||
description: Identifier for the Dart .pub-cache cache
|
||||
required: false
|
||||
default: 'flutter-pub:os:-:channel:-:version:-:arch:-:hash:'
|
||||
default: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:"
|
||||
cache-path:
|
||||
description: 'Flutter SDK cache path'
|
||||
description: Flutter SDK cache path
|
||||
required: false
|
||||
default: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:'
|
||||
default: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:"
|
||||
pub-cache-path:
|
||||
description: 'Flutter pub cache path'
|
||||
description: Flutter pub cache path
|
||||
required: false
|
||||
default: 'default'
|
||||
default: default
|
||||
architecture:
|
||||
description: 'The architecture of Flutter SDK executable (x64 or arm64)'
|
||||
description: The architecture of Flutter SDK executable (x64 or arm64)
|
||||
required: false
|
||||
default: '${{ runner.arch }}'
|
||||
default: "${{ runner.arch }}"
|
||||
outputs:
|
||||
CACHE-PATH:
|
||||
value: '${{ steps.flutter-action.outputs.CACHE-PATH }}'
|
||||
value: "${{ steps.flutter-action.outputs.CACHE-PATH }}"
|
||||
CACHE-KEY:
|
||||
value: '${{ steps.flutter-action.outputs.CACHE-KEY }}'
|
||||
value: "${{ steps.flutter-action.outputs.CACHE-KEY }}"
|
||||
CHANNEL:
|
||||
value: '${{ steps.flutter-action.outputs.CHANNEL }}'
|
||||
value: "${{ steps.flutter-action.outputs.CHANNEL }}"
|
||||
VERSION:
|
||||
value: '${{ steps.flutter-action.outputs.VERSION }}'
|
||||
value: "${{ steps.flutter-action.outputs.VERSION }}"
|
||||
ARCHITECTURE:
|
||||
value: '${{ steps.flutter-action.outputs.ARCHITECTURE }}'
|
||||
value: "${{ steps.flutter-action.outputs.ARCHITECTURE }}"
|
||||
PUB-CACHE-KEY:
|
||||
value: '${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}'
|
||||
value: "${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}"
|
||||
PUB-CACHE-PATH:
|
||||
value: '${{ steps.flutter-action.outputs.PUB-CACHE-PATH }}'
|
||||
value: "${{ steps.flutter-action.outputs.PUB-CACHE-PATH }}"
|
||||
runs:
|
||||
using: 'composite'
|
||||
using: composite
|
||||
steps:
|
||||
- run: chmod +x $GITHUB_ACTION_PATH/setup.sh
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in a new issue