Skip to content

Instantly share code, notes, and snippets.

@tianhaoz95
Created October 12, 2019 07:24
Show Gist options
  • Save tianhaoz95/7c2843c15ce806bda9b1cae756b4ce7e to your computer and use it in GitHub Desktop.
Save tianhaoz95/7c2843c15ce806bda9b1cae756b4ce7e to your computer and use it in GitHub Desktop.
Build iOS check
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