We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc11f09 commit a61128dCopy full SHA for a61128d
.github/workflows/build.yml
@@ -134,6 +134,28 @@ jobs:
134
fastlane build_aab
135
bundle exec fastlane deploy
136
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
156
+ name: linux
157
+ path: ./build/linux/x64/release/bundle
158
+
159
build-ios:
160
runs-on: macos-26
161
timeout-minutes: 30
0 commit comments