1
0
Fork 0
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:
Bartek Pacia 2024-03-31 19:15:36 +02:00
parent d3969fb775
commit 54a6ca61b1
No known key found for this signature in database

View file

@ -1,59 +1,59 @@
name: 'Flutter action' name: Set up Flutter
description: 'Setup your runner with Flutter environment' description: Setup your runner with Flutter environment
author: 'Alif Rachmawadi' author: Alif Rachmawadi
branding: branding:
icon: 'maximize' icon: maximize
color: 'blue' color: blue
inputs: inputs:
flutter-version: flutter-version:
description: 'The Flutter version to make available on the path' description: The Flutter version to make available on the path
required: false required: false
default: 'any' default: any
channel: channel:
description: 'The Flutter build release channel' description: The Flutter build release channel
required: false required: false
default: 'stable' default: stable
cache: cache:
description: 'Cache the Flutter SDK' description: Cache the Flutter SDK
required: false required: false
default: 'false' default: "false"
cache-key: cache-key:
description: 'Identifier for the Flutter SDK cache' description: Identifier for the Flutter SDK cache
required: false required: false
default: 'flutter-:os:-:channel:-:version:-:arch:-:hash:' default: "flutter-:os:-:channel:-:version:-:arch:-:hash:"
pub-cache-key: pub-cache-key:
description: 'Identifier for the Dart .pub-cache cache' description: Identifier for the Dart .pub-cache cache
required: false required: false
default: 'flutter-pub:os:-:channel:-:version:-:arch:-:hash:' default: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:"
cache-path: cache-path:
description: 'Flutter SDK cache path' description: Flutter SDK cache path
required: false required: false
default: '${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:' default: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:"
pub-cache-path: pub-cache-path:
description: 'Flutter pub cache path' description: Flutter pub cache path
required: false required: false
default: 'default' default: default
architecture: architecture:
description: 'The architecture of Flutter SDK executable (x64 or arm64)' description: The architecture of Flutter SDK executable (x64 or arm64)
required: false required: false
default: '${{ runner.arch }}' default: "${{ runner.arch }}"
outputs: outputs:
CACHE-PATH: CACHE-PATH:
value: '${{ steps.flutter-action.outputs.CACHE-PATH }}' value: "${{ steps.flutter-action.outputs.CACHE-PATH }}"
CACHE-KEY: CACHE-KEY:
value: '${{ steps.flutter-action.outputs.CACHE-KEY }}' value: "${{ steps.flutter-action.outputs.CACHE-KEY }}"
CHANNEL: CHANNEL:
value: '${{ steps.flutter-action.outputs.CHANNEL }}' value: "${{ steps.flutter-action.outputs.CHANNEL }}"
VERSION: VERSION:
value: '${{ steps.flutter-action.outputs.VERSION }}' value: "${{ steps.flutter-action.outputs.VERSION }}"
ARCHITECTURE: ARCHITECTURE:
value: '${{ steps.flutter-action.outputs.ARCHITECTURE }}' value: "${{ steps.flutter-action.outputs.ARCHITECTURE }}"
PUB-CACHE-KEY: PUB-CACHE-KEY:
value: '${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}' value: "${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}"
PUB-CACHE-PATH: PUB-CACHE-PATH:
value: '${{ steps.flutter-action.outputs.PUB-CACHE-PATH }}' value: "${{ steps.flutter-action.outputs.PUB-CACHE-PATH }}"
runs: runs:
using: 'composite' using: composite
steps: steps:
- run: chmod +x $GITHUB_ACTION_PATH/setup.sh - run: chmod +x $GITHUB_ACTION_PATH/setup.sh
shell: bash shell: bash