Skip to content

Commit 8542205

Browse files
committed
Fixes build paths
1 parent ab68f23 commit 8542205

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deployment.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,17 +172,17 @@ jobs:
172172
if: matrix.file == 'apk'
173173
run: |
174174
flutter build apk --obfuscate --split-debug-info=$FLUTTER_DEBUG_INFO_PATH
175-
mv build/app/outputs/flutter-apk/app-release.apk app.apk
176-
mv build/app/outputs/mapping/release/mapping.txt apk-mapping.txt
175+
mv build/app/outputs/flutter-apk/app-release.apk ../app.apk
176+
mv build/app/outputs/mapping/release/mapping.txt ../apk-mapping.txt
177177
working-directory: code
178178

179179
# aab
180180
- name: Build an Android App Bundle file
181181
if: matrix.file == 'aab'
182182
run: |
183183
flutter build appbundle --obfuscate --split-debug-info=$FLUTTER_DEBUG_INFO_PATH
184-
mv build/app/outputs/bundle/release/app-release.aab app.aab
185-
mv build/app/outputs/mapping/release/mapping.txt aab-mapping.txt
184+
mv build/app/outputs/bundle/release/app-release.aab ../app.aab
185+
mv build/app/outputs/mapping/release/mapping.txt ../aab-mapping.txt
186186
working-directory: code
187187

188188
# apk/aab
@@ -209,7 +209,7 @@ jobs:
209209
run: |
210210
flutter build ios --no-codesign --obfuscate --split-debug-info=$FLUTTER_DEBUG_INFO_PATH
211211
echo "::warning::TODO: fastlane export_ipa"
212-
echo "TODO: mv code/build/app/outputs/ipa/app.ipa app.ipa"
212+
echo "TODO: mv code/build/app/outputs/ipa/app.ipa ../app.ipa"
213213
working-directory: code
214214

215215
# all

0 commit comments

Comments
 (0)