README.md in pilot-1.1.0 vs README.md in pilot-1.2.0
- old
+ new
@@ -7,19 +7,20 @@
</h3>
<p align="center">
<a href="https://github.com/fastlane/deliver">deliver</a> •
<a href="https://github.com/fastlane/snapshot">snapshot</a> •
<a href="https://github.com/fastlane/frameit">frameit</a> •
- <a href="https://github.com/fastlane/PEM">PEM</a> •
+ <a href="https://github.com/fastlane/pem">pem</a> •
<a href="https://github.com/fastlane/sigh">sigh</a> •
<a href="https://github.com/fastlane/produce">produce</a> •
<a href="https://github.com/fastlane/cert">cert</a> •
<a href="https://github.com/fastlane/spaceship">spaceship</a> •
<b>pilot</b> •
<a href="https://github.com/fastlane/boarding">boarding</a> •
<a href="https://github.com/fastlane/gym">gym</a> •
- <a href="https://github.com/fastlane/scan">scan</a>
+ <a href="https://github.com/fastlane/scan">scan</a> •
+ <a href="https://github.com/fastlane/match">match</a>
</p>
-------
<p align="center">
<img src="assets/PilotTextTransparentSmall.png" width="500">
@@ -231,17 +232,18 @@
- [`fastlane`](https://fastlane.tools): Connect all deployment tools into one streamlined workflow
- [`deliver`](https://github.com/fastlane/deliver): Upload screenshots, metadata and your app to the App Store
- [`snapshot`](https://github.com/fastlane/snapshot): Automate taking localized screenshots of your iOS app on every device
- [`frameit`](https://github.com/fastlane/frameit): Quickly put your screenshots into the right device frames
- [`produce`](https://github.com/fastlane/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
-- [`PEM`](https://github.com/fastlane/PEM): Automatically generate and renew your push notification profiles
+- [`pem`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
- [`sigh`](https://github.com/fastlane/sigh): Because you would rather spend your time building stuff than fighting provisioning
- [`cert`](https://github.com/fastlane/cert): Automatically create and maintain iOS code signing certificates
- [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
- [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
- [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
- [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
+- [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
## Debug information
@@ -249,13 +251,20 @@
pilot --verbose
## Firewall Issues
-`pilot` uses the iTunes Transporter to upload metadata and binaries. In case you are behind a firewall, you can specify a different transporter protocol using
+`pilot` uses the iTunes Transporter to upload metadata and binaries. In case you are behind a firewall, you can specify a different transporter protocol from the command line using
```
DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV" pilot ...
+```
+
+If you are using `pilot` via the [fastlane action](https://github.com/fastlane/fastlane/blob/master/docs/Actions.md#pilot), add the following to your `Fastfile`
+
+```
+ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV"
+pilot...
```
## How is my password stored?
`pilot` uses the [CredentialsManager](https://github.com/fastlane/credentials_manager) from `fastlane`.