↑ Upgrade ruby in build

This commit is contained in:
Dan Jones 2019-08-19 09:59:38 -05:00
commit 4a416fcc78
2 changed files with 5 additions and 3 deletions

View file

@ -4,8 +4,8 @@ jobs:
branches: branches:
only: [master] only: [master]
working_directory: /tmp/danielrayjones working_directory: /tmp/danielrayjones
machine: docker:
enabled: true - image: ruby:2.6.3
steps: steps:
- checkout - checkout
- run: - run:
@ -18,7 +18,9 @@ jobs:
git config --global user.name "Circle CI" git config --global user.name "Circle CI"
- run: - run:
name: Install dependencies name: Install dependencies
command: bundle install command: |
gem install bundler:2.0.2
bundle check || bundle install
- run: - run:
name: Creating build directory name: Creating build directory
command: git clone -b gh-pages `git remote get-url origin` _site command: git clone -b gh-pages `git remote get-url origin` _site