File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -171,24 +171,19 @@ jobs:
171
171
# apk
172
172
- name : Build an Android APK file
173
173
if : matrix.file == 'apk'
174
- run : |
175
- cat pubspec.yaml
176
- flutter build apk --obfuscate --split-debug-info=build/app/outputs/symbols
174
+ run : flutter build apk --obfuscate --split-debug-info=build/app/outputs/symbols
177
175
working-directory : code
178
176
179
177
# aab
180
178
- name : Build an Android App Bundle file
181
179
if : matrix.file == 'aab'
182
- run : |
183
- cat pubspec.yaml
184
- flutter build appbundle --obfuscate --split-debug-info=build/app/outputs/symbols
180
+ run : flutter build appbundle --obfuscate --split-debug-info=build/app/outputs/symbols
185
181
working-directory : code
186
182
187
183
# ipa
188
184
- name : Build an iOS App Store Package file
189
185
if : matrix.file == 'ipa'
190
186
run : |
191
- cat pubspec.yaml
192
187
flutter build ios --no-codesign --obfuscate --split-debug-info=build/app/outputs/symbols
193
188
echo "::warning::TODO: fastlane export_ipa"
194
189
working-directory : code
You can’t perform that action at this time.
0 commit comments