README.md in sigh-1.1.3 vs README.md in sigh-1.1.4
- old
+ new
@@ -141,10 +141,28 @@
For a list of available parameters and commands run
sigh --help
+
+### Use with [`fastlane`](https://github.com/fastlane/fastlane)
+
+`sigh` becomes really interesting when used in [`fastlane`](https://github.com/fastlane/fastlane) in combination with [`cert`](https://github.com/fastlane/cert).
+
+Update your `Fastfile` to contain the following code:
+
+```ruby
+lane :beta do
+ cert
+ sigh(force: true)
+end
+```
+
+`force: true` will make sure to re-generate the provisioning profile on each run.
+This will result in `sigh` always using the correct signing certificate, which is installed on the local machine.
+
+
# Repair
`sigh` can automatically repair all your existing provisioning profiles which are expired or just invalid.
sigh repair
@@ -159,10 +177,10 @@
`sigh` will find the ipa file and the provisioning profile for you if they are located in the current folder.
You can pass more information using the command line:
- sigh resign ./path/app.ipa -i "iPhone Distribution: Felix Krause" -p "my.mobileprovision"
+ sigh resign ./path/app.ipa -i "iPhone Distribution: Felix Krause" -n "my.mobileprovision"
# Manage
With `sigh manage` you can list all provisioning profiles installed locally.