Skip to content

Commit 5345835

Browse files
committed
feat(chore): update README.md
1 parent e4a8c9a commit 5345835

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ This [GitHub Action]() installs and sets up of a Flutter SDK for use in actions
88
## Inputs
99

1010
The action takes the following inputs:
11-
* `sdk`: A release channel, which will install the latest build from that channel.
11+
* `channel`: A release channel, which will install the latest build from that channel.
1212
Available channels are `stable`, `beta`, `dev`. See
1313
https://flutter.dev/docs/development/tools/sdk/releases for details.
1414

15-
* `version`: A specific SDK version, e.g. `2.0.2` or `2.1.0-12.1.pre`
15+
* `version`: A specific SDK version, e.g. `3.0.2` or `3.1.0-9.0.pre`
1616

1717
## Basic example
1818

@@ -37,8 +37,8 @@ jobs:
3737
- name: Setup Flutter SDK
3838
uses: flutter-actions/setup-flutter@v1
3939
with:
40-
sdk: stable
41-
version: 2.0.2
40+
channel: stable
41+
version: 3.0.2
4242

4343
- name: Install dependencies
4444
run: flutter pub get
@@ -79,8 +79,8 @@ jobs:
7979
- name: Setup Flutter SDK
8080
uses: flutter-actions/setup-flutter@v1
8181
with:
82-
sdk: stable
83-
version: 2.0.2
82+
channel: stable
83+
version: 3.0.2
8484

8585
- name: Install dependencies
8686
run: flutter pub get

0 commit comments

Comments
 (0)