fastlane/lib/fastlane/actions/docs/sigh.md in fastlane-2.74.1 vs fastlane/lib/fastlane/actions/docs/sigh.md in fastlane-2.75.0.beta.20180109010003
- old
+ new
@@ -26,11 +26,11 @@
- Supports **App Store**, **Ad Hoc** and **Development** profiles
- Support for **multiple Apple accounts**, storing your credentials securely in the Keychain
- Support for **multiple Teams**
- Support for **Enterprise Profiles**
-To automate iOS Push profiles you can use [pem](https://github.com/fastlane/fastlane/tree/master/pem).
+To automate iOS Push profiles you can use [pem](https://docs.fastlane.tools/actions/pem).
### Why not let Xcode do the work?
- _sigh_ can easily be integrated into your CI-server (e.g. Jenkins)
@@ -42,11 +42,11 @@
![img/actions/sighRecording.gif](/img/actions/sighRecording.gif)
# Usage
-**Note**: It is recommended to use [match](https://github.com/fastlane/fastlane/tree/master/match) according to the [codesigning.guide](https://codesigning.guide) for generating and maintaining your provisioning profiles. Use _sigh_ directly only if you want full control over what's going on and know more about codesigning.
+**Note**: It is recommended to use [match](https://docs.fastlane.tools/actions/match) according to the [codesigning.guide](https://codesigning.guide) for generating and maintaining your provisioning profiles. Use _sigh_ directly only if you want full control over what's going on and know more about codesigning.
```no-highlight
fastlane sigh
```
@@ -105,13 +105,13 @@
For a list of available parameters and commands run
fastlane action sigh
-### Use with [_fastlane_](https://github.com/fastlane/fastlane/tree/master/fastlane)
+### Use with [_fastlane_](https://fastlane.tools)
-_sigh_ becomes really interesting when used in [_fastlane_](https://github.com/fastlane/fastlane/tree/master/fastlane) in combination with [_cert_](https://github.com/fastlane/fastlane/tree/master/cert).
+_sigh_ becomes really interesting when used in [_fastlane_](https://fastlane.tools) in combination with [_cert_](https://docs.fastlane.tools/actions/cert).
Update your `Fastfile` to contain the following code:
```ruby
lane :beta do
@@ -158,11 +158,11 @@
## Environment Variables
Run `fastlane action sigh` to get a list of all available environment variables.
-If you're using [cert](https://github.com/fastlane/fastlane/tree/master/cert) in combination with [fastlane](https://github.com/fastlane/fastlane/tree/master/fastlane) the signing certificate will automatically be selected for you. (make sure to run _cert_ before _sigh_)
+If you're using [cert](https://docs.fastlane.tools/actions/cert) in combination with [fastlane](https://fastlane.tools) the signing certificate will automatically be selected for you. (make sure to run _cert_ before _sigh_)
# How does it work?
_sigh_ will access the `iOS Dev Center` to download, renew or generate the `.mobileprovision` file. It uses [spaceship](https://spaceship.airforce) to communicate with Apple's web services.
@@ -178,10 +178,10 @@
It will show you the `mobileprovision` files like this:
![img/actions/QuickLookScreenshot.png](/img/actions/QuickLookScreenshot.png)
## App Identifier couldn't be found
-If you also want to create a new App Identifier on the Apple Developer Portal, check out [produce](https://github.com/fastlane/fastlane/tree/master/produce), which does exactly that.
+If you also want to create a new App Identifier on the Apple Developer Portal, check out [produce](https://docs.fastlane.tools/actions/produce), which does exactly that.
## What happens to my Xcode managed profiles?
_sigh_ will never touch or use the profiles which are created and managed by Xcode. Instead _sigh_ will manage its own set of provisioning profiles.