Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a "Fully automatic" workflow #1169

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
13 changes: 13 additions & 0 deletions docs/codesigning/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,19 @@ That's why it is recommended to specify a specific provisioning profile somehow:

The instructions below are more advanced, and take more time to setup than other approaches.

##### Fully Automatic Signing

If you want to keep your default Xcode workflow and be able to archive/upload builds from Xcode without fastlane if needed, you can simply use a lane like this:

```ruby
lane :release do
build_app(scheme: "Release")
upload_to_testflight
end
```

Replace "Release" with the name of the scheme you currently use to archive/upload builds. Just make sure it is shared (in Xcode, click on the current scheme and scroll to "Manage Schemes…" at the bottom).

##### Automatic & Manual Signing

To simplify development workflow you could use `Automatic` code signing for development, and `Manual` for release builds.
Expand Down