-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (32 loc) · 1.12 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: 'Generate matrix from pubspec.yaml action'
description: 'GitHub Action to generates a matrix of Dart and Flutter SDK versions from a pubspec.yaml file'
branding:
icon: "triangle"
color: "blue"
inputs:
pubspec:
description: 'The path to the pubspec.yaml file'
required: false
default: 'pubspec.yaml'
channel:
description: 'The Flutter channel to use when resolving the Flutter SDK version. Default: any'
required: false
default: 'any'
platform:
description: 'The platform to use when resolving the Flutter SDK version. Default: The runner operating system'
required: false
default: '${{ runner.os }}'
strict:
description: 'If true, the action will assert constraints on the Dart SDK version bundled with the Flutter SDK to ensure compatibility. Default: false'
required: false
default: "false"
outputs:
matrix:
description: 'The `matrix` data (<{ release: {dart: string, flutter: string} }>)'
dart:
description: 'The Dart SDK versions (Array<string>)'
flutter:
description: 'The Flutter SDK versions (Array<string>)'
runs:
using: 'node20'
main: 'dist/index.js'