Created
October 12, 2019 07:24
-
-
Save tianhaoz95/7c2843c15ce806bda9b1cae756b4ce7e to your computer and use it in GitHub Desktop.
Build iOS check
This file contains hidden or 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
name: iOS build check | |
on: [push, pull_request] | |
jobs: | |
build-iOS: | |
name: Build iOS package | |
runs-on: 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.9.1+hotfix.4' | |
channel: 'stable' | |
- name: Upgrade flutter | |
run: | | |
flutter channel master | |
flutter upgrade | |
- name: build iOS package | |
run: | | |
cd ./rock_paper_scissors | |
flutter build ios --release --no-codesign |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment