This file contains hidden or 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
# Existing SSH keys | |
> ls -al ~/.ssh | |
# Generate id_rsa | |
ssh-keygen -t rsa -b 4096 -C "[email protected]" | |
# Copy the SSH key to your clipboard. | |
> pbcopy < ~/.ssh/id_rsa.pub | |
# Generate id_rsa devops |
This file contains hidden or 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
--- | |
language: objective-c | |
before_script: | |
- ./scripts/travis/add-key.sh | |
after_script: | |
- ./scripts/travis/remove-key.sh | |
after_success: | |
- ./scripts/travis/testflight.sh | |
env: | |
global: |