We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When specifying one of the default buildpacks to use for Heroku:
deploy: provider: heroku buildpack: ruby
Deployment fails with an error (see this build, for example):
Fetching buildpack... failed Unknown buildpack type: https://github.com/heroku/heroku-buildpack-ruby
Looking at the anvil source, it looks like this error is reached when the buildpack URL has an unrecognized file extension. The URLs built by Travis for default buildpacks appear to have no extension (i.e. https://github.com/heroku/heroku-buildpack-ruby rather than https://github.com/heroku/heroku-buildpack-ruby.git). Perhaps they need to have a .git added?
.git
As a workaround, one can supply the full URL (with extension) in .travis.yml and deployment will work:
.travis.yml
deploy: provider: heroku buildpack: https://github.com/heroku/heroku-buildpack-ruby.git
The text was updated successfully, but these errors were encountered:
Append .git to generated Heroku Buildpack URLS
726dd8a
This fixes issue #85
@burnnat: Sorry for the super long delay in getting to this.
Sorry, something went wrong.
No worries, @Aaron1011 - since there's a simple workaround, I've been getting along just fine in the meantime. :)
No branches or pull requests
When specifying one of the default buildpacks to use for Heroku:
Deployment fails with an error (see this build, for example):
Looking at the anvil source, it looks like this error is reached when the buildpack URL has an unrecognized file extension. The URLs built by Travis for default buildpacks appear to have no extension (i.e. https://github.com/heroku/heroku-buildpack-ruby rather than https://github.com/heroku/heroku-buildpack-ruby.git). Perhaps they need to have a
.git
added?As a workaround, one can supply the full URL (with extension) in
.travis.yml
and deployment will work:The text was updated successfully, but these errors were encountered: