Permalink
Please sign in to comment.
| @@ -1,3 +1,7 @@ | ||
| - | ||
| +#!/bin/bash | ||
| +eval "$(ssh-agent -s)" #start the ssh agent | ||
| +echo "$FUNNY_CAT" > .travis/deploy_key.pem | ||
| +chmod 600 .travis/deploy_key.pem # this key should have push access | ||
| +ssh-add .travis/deploy_key.pem | ||
| git remote add dokku dokku@$APP_HOSTNAME:$APP | ||
| -git push --force dokku HEAD:master | ||
| +git push --force dokku HEAD:master |
0 comments on commit
ff25fd0