From 54a6ca61b1687df0f31ca738dc4922a0df7fa513 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Sun, 31 Mar 2024 19:15:36 +0200 Subject: [PATCH] run prettier --- action.yml | 58 +++++++++++++++++++++++++++--------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/action.yml b/action.yml index de9efa7..bcc5533 100644 --- a/action.yml +++ b/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