@@ -247,14 +247,14 @@ jobs:
247
247
# Specifies the name of the changelog artifact to download.
248
248
name : beta-changelog
249
249
250
- # Organize files for Firebase deployment
250
+ # Executes shell commands.
251
+ # Creates the necessary directory structure for the APK if it doesn't exist.
252
+ # Moves the downloaded release APK to the designated build output directory.
253
+ # Moves the downloaded changelog file to the build output directory.
251
254
- name : Move APK to build directory
252
- run : | # Executes shell commands.
253
- # Creates the necessary directory structure for the APK if it doesn't exist.
255
+ run : |
254
256
mkdir -p ./mifospay-android/build/outputs/apk/prod/release/
255
- # Moves the downloaded release APK to the designated build output directory.
256
257
mv ./android-artifacts/prod/release/mifospay-android-prod-release.apk ./mifospay-android/build/outputs/apk/prod/release/
257
- # Moves the downloaded changelog file to the build output directory.
258
258
mv ./changelogBeta ./mifospay-android/build/outputs/
259
259
260
260
# Deploy to Firebase App Distribution
@@ -478,16 +478,15 @@ jobs:
478
478
with :
479
479
name : beta-changelog
480
480
481
- # Organize files for Firebase deployment
482
481
# Sets the name of the step. Although the name mentions "APK," it's actually moving the iOS IPA file and the changelog.
483
482
- name : Move APK to build directory
484
483
# Moves any IPA file in the current directory to the mifospay-ios directory.
485
484
# This is likely done to place the IPA file in the expected location for the Fastlane deployment lane.
486
- run : |
487
- mv *.ipa ./mifospay-ios/
488
485
# Moves the changelogBeta file (presumably the downloaded changelog) to the mifospay-android/build/outputs/ directory.
489
486
# This might be a mistake, as it's placing the iOS changelog in the Android build output directory.
490
487
# It's possible this line should be adjusted to place the changelog in a more appropriate location for the iOS deployment.
488
+ run : |
489
+ mv *.ipa ./mifospay-ios/
491
490
mv changelogBeta ./mifospay-android/build/outputs/
492
491
493
492
0 commit comments