-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update deploy key for greenelab/manubot-rootstock
- Loading branch information
Showing
4 changed files
with
9 additions
and
4 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 |
---|---|---|
|
@@ -13,7 +13,12 @@ To generate and configure the GitHub SSH deploy key, run the following commands | |
|
||
```sh | ||
# Generate a new SSH key | ||
ssh-keygen -t rsa -b 4096 -C "[email protected]" -f deploy.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 | ||
|
||
|
Binary file not shown.
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 |
---|---|---|
@@ -1 +1 @@ | ||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC8XiVsudPG/YBgkKuqpaez+LGH8+86jNtID0/FpVJVtiqlvVRG6YO7YtJZJc8DNoO0epClt3lMpwu/ISPvixvPXG5OOiUW9ALZPoDx4loN1SY3+ifA2LyTa5lFYtrijJvqtm9jZkzEG8B/nUgtDey6ROCFnNAYASVb1INDHsZznlhZF1Z+AckIAT7dgZ0GZZ8GVKLaSfLSfQ2cQtSXVRxgWqxs6ItRskUJD4T5Ao6brVec2SsUT+xm4eZvl4sZCqG/vNklqvuhs1wJ1ordmehLyj82D3Yy6079dRsR2AULTkPDOSo3HhoHZ3wD+95FtAyAku25pXWZxzY8Yf21I7iidzOP2bBUumlIeo/EZCirU1APOJy1bWyioqznIyOeBFFWQ2oB7rL64XfXJFhfwMeB6aJlD2iiNaw2Hm/zmsR6uwEwctiOnvD5JzEGV0wCfSSvX6jDJ5cFi2DB92B/XjwKGahG5fsbKpu5RHbfv0BBRoniR1Hd5ntu7uSYrNwcCXnEfiHdazThLAqaRXg/N10IQoUkdpzUTez2ejYD6R+1xOShYOF/CKFpkYOMM92m2n8DkB1kodPKJCe6kX3/eGfr/Y+q/NIjUQKy2TSz6HHPn7vc+N7DX5DCQHGgd/bMAeIfKzybNa3GHmLMbyMU1572nbLXgScc32xmb5ekq16FVw== [email protected] | ||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDaG65FKmJYW/y21GdrkgDnfUx9KSJ6Ahb93y5RWo+Uh1TIZXKWm+ZbaGCi93COvXwisa9jyxsIDJs8rNg7xFPusI43Vk172BCThzB4esM5ovtVdNUIkZmZEpq4YGbhAsMMhF6aMyudIqiRuRqilepFYss/4UJhpEEcGuT8Wx3LjdwaVDBSn1KT4R3J0okBLEn8RtZ3/rOi3xgtowncsJlLB7c53M331ezIqD+bXuhLnkOU9yJZ5/hJk+gK5Q16MCnRsq8SPX888UnGBVv9tPjajgDAYZaEgaJxeQyguVw9V+MgEoVraIWdpupQ/SOAdhPJ1jLHwT1xippZ/z4Z97Kb3lez81Zot0wRyO3z+Ul+YAUyC1nvAJwHYBFGVe7XxKzjsJBNMwUbqDAgR5PyMoxWLNG8HrUT1joEBEamhKsnJ73gpOmYqS4tgkIcZH1OZRhmaSaPufkOj6ZOr/F6PD7towd9rFIW5HxcP+hIYnzQDWFkLNgw5vsGFG2QLah324VmdNDi4jU1GlDzF8wQimSjkJEe/kfwUUsD0ablfk7MqYwQ60kCNoBv3umk5VjK0hqZynSjZSaYPmJmVlPybe7fRYMq9YPu6xXoaSxN8gXI5veFoA6YcFme+tPRc+tfpNGZl0fMsCxXgNq9krMB3ClXFWTu6qytBLQbn6/pW0w9UQ== [email protected] |
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 |
---|---|---|
|
@@ -20,8 +20,8 @@ git remote set-url origin [email protected]:$TRAVIS_REPO_SLUG.git | |
|
||
# Decrypt and add SSH key | ||
openssl aes-256-cbc \ | ||
-K $encrypted_0dd7e5f24ac8_key \ | ||
-iv $encrypted_0dd7e5f24ac8_iv \ | ||
-K $encrypted_f2f00aaf6402_key \ | ||
-iv $encrypted_f2f00aaf6402_iv \ | ||
-in ci/deploy.key.enc \ | ||
-out ci/deploy.key -d | ||
eval `ssh-agent -s` | ||
|