Skip to content

Commit c9c5659

Browse files
Update build_and_publish_on_platforms.yaml
1 parent 4dfcec7 commit c9c5659

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/build_and_publish_on_platforms.yaml

+7-8
Original file line numberDiff line numberDiff line change
@@ -247,14 +247,14 @@ jobs:
247247
# Specifies the name of the changelog artifact to download.
248248
name: beta-changelog
249249

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.
251254
- 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: |
254256
mkdir -p ./mifospay-android/build/outputs/apk/prod/release/
255-
# Moves the downloaded release APK to the designated build output directory.
256257
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.
258258
mv ./changelogBeta ./mifospay-android/build/outputs/
259259
260260
# Deploy to Firebase App Distribution
@@ -478,16 +478,15 @@ jobs:
478478
with:
479479
name: beta-changelog
480480

481-
# Organize files for Firebase deployment
482481
# Sets the name of the step. Although the name mentions "APK," it's actually moving the iOS IPA file and the changelog.
483482
- name: Move APK to build directory
484483
# Moves any IPA file in the current directory to the mifospay-ios directory.
485484
# 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/
488485
# Moves the changelogBeta file (presumably the downloaded changelog) to the mifospay-android/build/outputs/ directory.
489486
# This might be a mistake, as it's placing the iOS changelog in the Android build output directory.
490487
# 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/
491490
mv changelogBeta ./mifospay-android/build/outputs/
492491
493492

0 commit comments

Comments
 (0)