Files
flutter-action/README.md
Tianhao Zhou 36e62b1fd9 change flutter version in doc
Change the flutter version in README from 1.8.4 to 1.7.8+hotfix.4 to keep it consistent with the first example and also avoid the confusion because 1.8.4 beta does not exist (which will cause a http error if someone copy the code as is).
2019-09-29 22:36:56 -07:00

78 lines
1.6 KiB
Markdown

# flutter-action
This action sets up a flutter environment for use in actions. It works on Linux, Windows, and macOS.
# Usage
```yaml
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.7.8+hotfix.4'
- run: flutter pub get
- run: flutter test
- run: flutter build apk
```
Use latest release for particular channel:
```yaml
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable' # or: 'dev' or 'beta'
- run: flutter pub get
- run: flutter test
- run: flutter build apk
```
Use latest release for particular version and/or channel:
```yaml
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.7.x' # you can use 1.7
channel: 'dev' # optional, default to: 'stable'
- run: flutter pub get
- run: flutter test
- run: flutter build apk
```
Matrix Testing:
```yaml
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '1.7.8+hotfix.4'
channel: 'beta'
- run: flutter pub get
- run: flutter test
- run: flutter build apk
```