-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #319 Fix some grammar and spelling mistakes in the CI file * #319 Be sure it is clear to the reader than they need to be a repository admin to access settings.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ Travis CI can be used to deploy a fully built site artifact (with the docroot) i | |
2. Travis builds the docroot | ||
3. Travis commits the docroot to a specific "build" branch and pushes to Acquia Cloud | ||
|
||
To set up this workflow, you must configure Acquia Cloud, GitHub, and Travis CI to work together. Step-by-step instructions are provided below. _The following instructins apply only to private GitHub repositories._ | ||
To set up this workflow, you must configure Acquia Cloud, GitHub, and Travis CI to work together. Step-by-step instructions are provided below. _The following instructions apply only to private GitHub repositories._ | ||
|
||
|
||
1. Generate an SSH key locally. E.g., | ||
|
@@ -41,14 +41,14 @@ To set up this workflow, you must configure Acquia Cloud, GitHub, and Travis CI | |
ssh-keygen -t rsa -b 4096 | ||
|
||
Do not use a passphrase! | ||
|
||
1. Create a new Acquia Cloud account to be used exclusively as a container for the SSH keys that will grant Travis push access to Acquia Cloud. This can be done by inviting a new team member on the "Teams" tab in Acquia Cloud. You can use an email address like `<email>[email protected]`. The team member must have SSH push access. | ||
1. Login the your new Acquia Cloud account and add the public SSH key from the key pair that was generated in step 1 by visiting `https://accounts.acquia.com/account/[uid]/security`. | ||
1. Add the same public SSH key to the "Deployment Keys" section on your project's GitHub settings page, located at `https://github.com/acquia-pso/[project-name]/settings/keys`. | ||
1. Login to the new Acquia Cloud account and add the public SSH key from the key pair that was generated in step 1 by visiting `https://accounts.acquia.com/account/[uid]/security`. | ||
1. Add the same public SSH key to the "Deployment Keys" section on your project's GitHub settings page, located at `https://github.com/acquia-pso/[project-name]/settings/keys`. **Note: You may not have direct access to these settings if you do not have administrative control over your repository.** | ||
1. Add the _private SSH key_ to your project's Travis CI settings located at `https://magnum.travis-ci.com/acquia-pso/[project-name]/settings`. | ||
1. Uncomment the example deployment steps in your .travis.yml file and customize them to deploy your desired branch. | ||
1. Add your cloud git repository to the remotes section of your project.yml file: | ||
|
||
remotes: | ||
- [email protected]:example.git` | ||
|
||
|