From 4a416fcc7845590cf9e609f273343450c48680c4 Mon Sep 17 00:00:00 2001 From: Dan Jones Date: Mon, 19 Aug 2019 09:59:38 -0500 Subject: [PATCH] =?UTF-8?q?=E2=86=91=20Upgrade=20ruby=20in=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 8 +++++--- _assets/js/{application.js.es6 => application.js} | 0 2 files changed, 5 insertions(+), 3 deletions(-) rename _assets/js/{application.js.es6 => application.js} (100%) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6c7acf7..0b68343 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,8 +4,8 @@ jobs: branches: only: [master] working_directory: /tmp/danielrayjones - machine: - enabled: true + docker: + - image: ruby:2.6.3 steps: - checkout - run: @@ -18,7 +18,9 @@ jobs: git config --global user.name "Circle CI" - run: name: Install dependencies - command: bundle install + command: | + gem install bundler:2.0.2 + bundle check || bundle install - run: name: Creating build directory command: git clone -b gh-pages `git remote get-url origin` _site diff --git a/_assets/js/application.js.es6 b/_assets/js/application.js similarity index 100% rename from _assets/js/application.js.es6 rename to _assets/js/application.js