Skip to content

Commit

Permalink
chore: 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 7f87a65 commit 5087f09
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Build iOS & Android"

on:
push:
branches:
- test
jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.24.0"
channel: "stable"

- name: flutter doctor
run: flutter doctor --verbose

- name: Check Java and environment
run: |
java -version
echo $JAVA_HOME
which java
- name: Get dependencies
run: flutter pub get

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

0 comments on commit 5087f09

Please sign in to comment.