all branch #1
Workflow file for this run
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
name: Flutter Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: 'stable' # 필요한 Flutter 버전을 명시하세요. | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Build APK | |
run: flutter build apk | |
- name: Build iOS (if on macOS) | |
if: runner.os == 'macOS' | |
run: flutter build ios --no-codesign |