Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Make sure SSH key has 4096 bits #48

Merged
merged 1 commit into from
May 17, 2016
Merged
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
4 changes: 2 additions & 2 deletions template/build/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ Travis CI can be used to deploy a fully built site artifact (with the docroot) i
1. A pull request is merged into the GitHub repository
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.


1. Generate an SSH key locally. E.g.,

```
cd ~/.ssh
ssh-keygen -t rsa
ssh-keygen -t rsa -b 4096
```

Do not use a passphrase!
Expand Down