From e7b90e9b3cc54c50b744a46bf5187af571827fb7 Mon Sep 17 00:00:00 2001 From: Arianna Bunnell <88562918+AriBunnell@users.noreply.github.com> Date: Sat, 12 Oct 2024 16:03:35 -1000 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index badebf2..08aec38 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,12 +42,12 @@ jobs: ~/.rbenv/bin/rbenv install 3.1.4 ~/.rbenv/bin/rbenv global 3.1.4 ~/.rbenv/bin/rbenv rehash - # Removed the touch command for /opt/hostedtoolcache - # Install Bundler and cache gems + # Install Bundler and cache gems in the user's local directory - name: Install Bundler run: | - gem install bundler + gem install bundler --user-install + bundle config set path 'vendor/bundle' bundle install - name: Setup Pages