-
-
Notifications
You must be signed in to change notification settings - Fork 197
43 lines (36 loc) · 896 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Builds
on:
push:
branches:
- main
pull_request:
branches:
- main
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
name: Build ${{ matrix.target }}
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
target: ["appbundle --debug", "ios --no-codesign"]
steps:
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
channel: beta
- run: flutter doctor -v
- name: Checkout mobile code
uses: actions/checkout@v4
- name: Install dependencies
run: flutter pub get
- name: Code generation
run: dart run build_runner build
- run: flutter build ${{ matrix.target }}