Skip to content

Commit

Permalink
Update build workflow to include iOS and Android builds
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaDemchenko committed Aug 12, 2024
1 parent 5ee03e0 commit 7e347d9
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
name: "Build"
name: "Build IOS & Android"

on:
pull_request:
branches:
- dev
- main
push:
branches:
- dev
- main

jobs:
build:
Expand All @@ -23,8 +24,14 @@ jobs:

- run: flutter --version

- name: Flutter analyze
run: flutter analyze

- name: Get dependencies
run: flutter pub get

- name: Build
- name: Build IOS
run: flutter build ios --release --no-codesign

- name: Build Android
run: flutter build apk --release

0 comments on commit 7e347d9

Please sign in to comment.