mirror of
https://github.com/subosito/flutter-action.git
synced 2024-08-16 10:19:50 +02:00
111 lines
3.6 KiB
YAML
111 lines
3.6 KiB
YAML
name: Set up Flutter
|
|
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
|
|
default: "false"
|
|
cache-key:
|
|
description: Identifier for the Flutter SDK cache
|
|
required: false
|
|
default: "flutter-:os:-:channel:-:version:-:arch:-:hash:"
|
|
pub-cache-key:
|
|
description: Identifier for the Dart .pub-cache cache
|
|
required: false
|
|
default: "flutter-pub:os:-:channel:-:version:-:arch:-:hash:"
|
|
cache-path:
|
|
description: Flutter SDK cache path
|
|
required: false
|
|
default: "${{ runner.tool_cache }}/flutter/:channel:-:version:-:arch:"
|
|
pub-cache-path:
|
|
description: Flutter pub cache path
|
|
required: false
|
|
default: default
|
|
architecture:
|
|
description: The architecture of Flutter SDK executable (x64 or arm64)
|
|
required: false
|
|
default: "${{ runner.arch }}"
|
|
|
|
outputs:
|
|
CACHE-KEY:
|
|
value: "${{ steps.flutter-action.outputs.CACHE-KEY }}"
|
|
description: Key used to cache the Flutter SDK
|
|
CACHE-PATH:
|
|
value: "${{ steps.flutter-action.outputs.CACHE-PATH }}"
|
|
description: Path to Flutter SDK
|
|
CHANNEL:
|
|
value: "${{ steps.flutter-action.outputs.CHANNEL }}"
|
|
description: The selected Flutter release channel
|
|
VERSION:
|
|
value: "${{ steps.flutter-action.outputs.VERSION }}"
|
|
description: The selected Flutter version
|
|
ARCHITECTURE:
|
|
value: "${{ steps.flutter-action.outputs.ARCHITECTURE }}"
|
|
description: The selected Flutter CPU architecture
|
|
PUB-CACHE-KEY:
|
|
value: "${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}"
|
|
description: Key used to cache the pub dependencies
|
|
PUB-CACHE-PATH:
|
|
value: "${{ steps.flutter-action.outputs.PUB-CACHE-PATH }}"
|
|
description: Path to pub cache
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Make setup script executable
|
|
run: chmod +x "$GITHUB_ACTION_PATH/setup.sh"
|
|
shell: bash
|
|
|
|
- name: Set action inputs
|
|
id: flutter-action
|
|
shell: bash
|
|
run: |
|
|
$GITHUB_ACTION_PATH/setup.sh -p \
|
|
-c '${{ inputs.cache-path }}' \
|
|
-k '${{ inputs.cache-key }}' \
|
|
-d '${{ inputs.pub-cache-path }}' \
|
|
-l '${{ inputs.pub-cache-key }}' \
|
|
-n '${{ inputs.flutter-version }}' \
|
|
-a '${{ inputs.architecture }}' \
|
|
${{ inputs.channel }}
|
|
|
|
- name: Cache Flutter
|
|
uses: actions/cache@v4
|
|
if: ${{ inputs.cache == 'true' }}
|
|
with:
|
|
path: ${{ steps.flutter-action.outputs.CACHE-PATH }}
|
|
key: ${{ steps.flutter-action.outputs.CACHE-KEY }}
|
|
restore-keys: |
|
|
${{ steps.flutter-action.outputs.CACHE-KEY }}
|
|
|
|
- name: Cache pub dependencies
|
|
uses: actions/cache@v4
|
|
if: ${{ inputs.cache == 'true' }}
|
|
with:
|
|
path: ${{ steps.flutter-action.outputs.PUB-CACHE-PATH }}
|
|
key: ${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}-${{ hashFiles('**/pubspec.lock') }}
|
|
restore-keys: |
|
|
${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}-${{ hashFiles('**/pubspec.lock') }}
|
|
${{ steps.flutter-action.outputs.PUB-CACHE-KEY }}
|
|
|
|
- name: Run setup script
|
|
shell: bash
|
|
run: |
|
|
$GITHUB_ACTION_PATH/setup.sh \
|
|
-c '${{ steps.flutter-action.outputs.CACHE-PATH }}' \
|
|
-n '${{ steps.flutter-action.outputs.VERSION }}' \
|
|
-a '${{ steps.flutter-action.outputs.ARCHITECTURE }}' \
|
|
${{ steps.flutter-action.outputs.CHANNEL }}
|