I have a RoR app deployed on Deis and I'm trying to set up Codeship to automatically deploy on Deis.
here are the steps I've taken so far:
Register codeship account to deis:
deis register deis.example.com
username: codeship
password:
password confirmation:
Adding Codeship deployment key to deis:
deis keys:add <codeship_key_path>
In codeship deployment
git remote add deis <repo_url>
git push deis next:master
What happened is that repo on deis got updated but the app didn't got deployed.