Skip to content

Commit

Permalink
Try and fix Travis deploy
Browse files Browse the repository at this point in the history
We had weird errors about the URI gem not being at the right version:

> You have already activated uri 0.13.1, but your Gemfile requires uri
> 0.13.0. Since uri is a default gem, you can either remove your
> dependency on it or try updating to a newer version of bundler that
> supports uri as a default gem. (Gem::LoadError)

This is supposed to fix it for now.

https://travis-ci.community/t/deployments-are-failing-due-to-uri-dependency/14375/4
  • Loading branch information
cwendling authored and lukefromdc committed Sep 24, 2024
1 parent 90b39ec commit 4996c22
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ notifications:
on_success: never
on_failure: always

before_deploy:
- yes | gem update --system --force
- gem install bundler
- gem install uri
- gem install logger

deploy:
- provider: pages
edge: true
Expand Down

0 comments on commit 4996c22

Please sign in to comment.