Skip to content

Commit

Permalink
Merge branch 'feature/prebuilt' of https://github.com/100mslive/100ms…
Browse files Browse the repository at this point in the history
…-flutter into feature/prebuilt
  • Loading branch information
ygit committed Aug 3, 2023
2 parents ce7dc61 + 8bab5ba commit c1242a7
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Flutter

on: #events (push and pull_request)
push:
branches: [ "feature/prebuilt" ]
pull_request:
branches: [ "feature/prebuilt" ]


jobs: #here we specify the jobs - We could have multiple jobs
build: #name it something meaningful
runs-on: macos-latest #runner: select a machine to use

//put down the steps
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'

- name: Install dependencies
run: flutter pub get # action

- name: Run tests
run: flutter test

- name: Build android apk and appBundle
run: flutter build apk

- name: Build android ios
run: flutter build ios --releasee --no-codesign

0 comments on commit c1242a7

Please sign in to comment.