Skip to content

Commit a61128d

Browse files
authored
Add Linux build
1 parent fc11f09 commit a61128d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,28 @@ jobs:
134134
fastlane build_aab
135135
bundle exec fastlane deploy
136136
137+
build-android:
138+
runs-on: ubuntu-latest
139+
timeout-minutes: 30
140+
steps:
141+
- uses: actions/checkout@v5
142+
- name: Setup Flutter
143+
uses: subosito/flutter-action@v2
144+
with:
145+
channel: stable
146+
flutter-version: 3.35.5
147+
- name: Deps
148+
run: |
149+
flutter pub get
150+
flutter gen-l10n
151+
- name: Build Linux
152+
run: flutter build linux --release
153+
- name: Upload binary artifact
154+
uses: actions/upload-artifact@v4
155+
with:
156+
name: linux
157+
path: ./build/linux/x64/release/bundle
158+
137159
build-ios:
138160
runs-on: macos-26
139161
timeout-minutes: 30

0 commit comments

Comments
 (0)