Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions _articles/fastlane/publish-your-app.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
---
title: ' Ionic + Fastlane: Publish your app'
published: true
date: 2017-08-29 16:00:00 +0000
last_updated: ''
parent: ['Ionic + Fastlane', '../fastlane']
---
# Publish your Ionic Cordova app on the app stores

After extensive testing your Debug and Release builds you now have a version that should be uploaded to the stores, for review for iOS and release for Android.

Build with Ionic
Upload with Fastlane
Do last few steps manually

## iOS

TODO

### Upload `.ipa` file

```ruby
lane :publish do
build_release
deliver(
ipa: ENV('CORDOVA_IOS_RELEASE_BUILD_PATH')
)
end
```

TODO
https://github.com/fastlane/fastlane/blob/master/deliver/Deliverfile.md#submission_information
https://github.com/fastlane/fastlane/blob/master/spaceship/lib/spaceship/tunes/app_submission.rb#L18-L69

### Submit your iOS app for review

Additional steps in the web UI:

* ...

## Android

TODO

### Upload `.apk` file

```ruby
lane :publish do
build_release
supply(
apk: ENV('CORDOVA_ANDROID_RELEASE_BUILD_PATH')
)
end
```

### Publish your Android app

Additional steps in the web UI:

* ...

## Conclusion
Loading