ember-learn / ember-learn/ember-cli-addon-docs

[Travis CI] Missing new line at the end of deploy key

Open
#294 0 comments 1 reaction 0 assignees View on GitHub
Dominant language
JavaScript
Stars
172
Forks
142
PR merge metrics
No merged PRs in 30d

Description

Hi 👋,

when setting up an automatic deployment using Travis CI, I've followed commands from documentation, but this command caused the Travis CI job to fail by asking me for `passphrase`

```
travis env set -- DEPLOY_KEY "$(cat deploy_key)"
```

The cause was in missing new line at the end, so I've used slightly updated command, which made the job to pass

```
travis env set -- DEPLOY_KEY "$(cat deploy_key)"$'\n'
```

I'm not sure if I did something wrong, or the docs should be updated, if this affects more people?

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.