Skip to content

Commit 984922f

Browse files
committed
Update deployment.yml
1 parent 64d7ddf commit 984922f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/deployment.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)