2

我在 Deis 上部署了一个 RoR 应用程序,我正在尝试将 Codeship 设置为在 Deis 上自动部署。

以下是我到目前为止采取的步骤:

向 deis 注册 codeship 帐户:

deis register deis.example.com
username: codeship
password:
password confirmation:

向 deis 添加 Codeship 部署密钥:

deis keys:add <codeship_key_path>

在代码部署中

git remote add deis <repo_url>
git push deis next:master

发生的事情是 deis 上的 repo 已更新,但应用程序未部署。

4

1 回答 1

1

我尝试了相同的步骤,只要将您创建的新用户添加到 DEIS 项目中,它们就可以工作

deis perms:create codeship

已推送更改并将更改部署到 DEIS 如果这不起作用,请确保在以本地用户身份登录时通过 git 部署到 DEIS 工作正常。

于 2015-12-17T00:43:30.290 回答