소스 검색

fastlane: add skip_upload_apk to play store config

If there is any .apk file in the root dir of the project (like one used for testing prior to release),
the upload_to_play_store lane will pick it up and throw an error because it has both an APK and an AAB.

To fix this, tell it to ignore any APKs and only use the provided AAB.

Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
Álvaro Brey 2 년 전
부모
커밋
e924e10be2
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      fastlane/Fastfile

+ 1 - 0
fastlane/Fastfile

@@ -292,6 +292,7 @@ desc "Upload to play store"
 private_lane :uploadToPlaystore_Final do |options|
     upload_to_play_store(
         skip_upload_images: true,
+        skip_upload_apk: true,
         aab: "release/app-gplay-release.aab"
     )
 end