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:
171171 # apk
172172 - name : Build an Android APK file
173173 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
177175 working-directory : code
178176
179177 # aab
180178 - name : Build an Android App Bundle file
181179 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
185181 working-directory : code
186182
187183 # ipa
188184 - name : Build an iOS App Store Package file
189185 if : matrix.file == 'ipa'
190186 run : |
191- cat pubspec.yaml
192187 flutter build ios --no-codesign --obfuscate --split-debug-info=build/app/outputs/symbols
193188 echo "::warning::TODO: fastlane export_ipa"
194189 working-directory : code
You can’t perform that action at this time.
0 commit comments