Skip to content

Commit c2be706

Browse files
justin808claude
andcommitted
Fix bundle install path to use absolute path
Use absolute path for vendor/bundle to prevent bundler from creating directories relative to BUNDLE_GEMFILE location (gemfiles/vendor/). This fixes untracked file errors in Ruby 2.7 CI runs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a279252 commit c2be706

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
path: vendor/bundle
5858
key: root-gem-cache-${{ matrix.ruby }}-${{ hashFiles('Gemfile.lock') }}
5959
- name: Install Ruby Gems
60-
run: bundle check --path=vendor/bundle || bundle _2.4.9_ install --path=vendor/bundle --jobs=4 --retry=3
60+
run: bundle check --path=${{ github.workspace }}/vendor/bundle || bundle _2.4.9_ install --path=${{ github.workspace }}/vendor/bundle --jobs=4 --retry=3
6161
- run: yarn
6262
- run: bundle exec rake react:update
6363
- run: bundle exec rake ujs:update

0 commit comments

Comments
 (0)