Skip to content

Commit

Permalink
wip: Upgrade to Quasar 2 / Vue 3 : updated CI scripts #393
Browse files Browse the repository at this point in the history
  • Loading branch information
cnouguier committed Aug 22, 2022
1 parent 646e6c6 commit 57c1aea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rclone copy android.build.log scw:kalisio-builds/${BUILD_BUCKET}/android.build.l
check_code $EXIT_CODE 0 "Building the app"

# Backup the android build to S3
rclone copy src-cordova/platforms/android/app/build/outputs/apk scw:kalisio-builds/${BUILD_BUCKET}/android > /dev/null
rclone copy src-cordova/platforms/android/app/build/outputs/bundle scw:kalisio-builds/${BUILD_BUCKET}/android > /dev/null
check_code $? 0 "Copying the artefact to s3"

travis_fold end "build"
Expand Down
4 changes: 2 additions & 2 deletions src-cordova/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ platform :android do
skip_upload_images: true,
skip_upload_screenshots: true,
check_superseded_tracks: true,
aab: './platforms/android/app/build/outputs/apk/release/app-release.aab')
aab: './platforms/android/app/build/outputs/bundle/release/app-release.aab')
end
lane :prod do
upload_to_play_store(track: 'production',
skip_upload_metadata: true,
skip_upload_images: true,
skip_upload_screenshots: true,
check_superseded_tracks: true,
aab: './platforms/android/app/build/outputs/apk/release/app-release.aab')
aab: './platforms/android/app/build/outputs/bundle/release/app-release.aab')
end
end

0 comments on commit 57c1aea

Please sign in to comment.