-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3a36396
commit e623f6e
Showing
1 changed file
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
name: 'Setup and cache Flutter SDK' | ||
description: 'Composite GitHub Action to setup Flutter with in-built tool caching' | ||
author: 'Hrishikesh Kadam <[email protected]>' | ||
description: 'Composite GitHub Actions to setup and cache the Flutter SDK.' | ||
inputs: | ||
ref: | ||
description: 'channel (stable, beta or master), version(2.8) or any git reference(2.8.0-3.3.pre)' | ||
required: false | ||
default: 'stable' | ||
branding: | ||
icon: 'heart' | ||
color: 'purple' | ||
|
||
runs: | ||
using: "composite" | ||
using: 'composite' | ||
steps: | ||
- name: Check Flutter ${{ inputs.ref }} HEAD | ||
run: | | ||
|
@@ -33,3 +31,7 @@ runs: | |
shell: bash | ||
- run: flutter --version | ||
shell: bash | ||
|
||
branding: | ||
icon: 'heart' | ||
color: 'purple' |