This repository uses continuous analysis to create the manuscript and commit it back to GitHub.
deploy.sh
runs on successful master
branch builds that are not pull requests.
The contents of /output
are committed to the gh-pages
branch.
The contents of /references/generated
are committed to the references
branch.
To generate and configure the GitHub SSH deploy key, run the following commands from this directory.
# Generate a new SSH key
ssh-keygen \
-t rsa \
-b 4096 \
-C "[email protected]" \
-N "" \
-f deploy.key
# Add deploy.key.pub to GitHub under the repository's settings
# see https://developer.github.com/guides/managing-deploy-keys/#deploy-keys
# Encrypt and upload key to Travis CI.
# See https://docs.travis-ci.com/user/encrypting-files/
travis encrypt-file deploy.key
# Modify the returned command to decrypt the key in ci/deploy.sh