Skip to content

Commit af4b97a

Browse files
Create ios build action (#41)
* Create ios build action * Update ios.yml * Update ios.yml * Update ios.yml * Update ios.yml
1 parent ecbad16 commit af4b97a

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/ios.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build ios
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
runs-on: macos-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: subosito/flutter-action@v2
16+
with:
17+
channel: 'stable'
18+
architecture: x64
19+
- name: Install dependencies
20+
run: flutter pub get
21+
- name: Generate l10n
22+
run: flutter gen-l10n
23+
- name: Build ios
24+
run: flutter build ios --release --no-codesign

0 commit comments

Comments
 (0)