Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Head Detached warning in Travis-CI when deploying to Heroku

Why am I getting a 'Head Detached' warning in Travis-CI build logs after deploying to Heroku: https://travis-ci.org/CenTexDevs/somewherebetweenus-mobile-web/builds/44529101 .

My .travis.yml file:

language: node_js
node_js:
  - '0.10'
before_script:
  - 'gem update --system'
  - 'gem install compass'
  - 'npm install -g bower grunt-cli'
  - 'bower install'

deploy:
- provider: heroku
like image 809
jchadhowell Avatar asked Dec 19 '14 06:12

jchadhowell


1 Answers

You need to add the following line to your deploy configuration.

Set skip_cleanup to true to prevent Travis CI from deleting your build artifacts.

deploy:
  ...
  skip_cleanup: true
like image 197
schickling Avatar answered Oct 20 '22 17:10

schickling