Skip to content

Commit dabbd69

Browse files
committed
update release.yml
1 parent 766c25d commit dabbd69

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/releases.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,16 @@ jobs:
1616
- name: Set up Ruby
1717
uses: ruby/setup-ruby@v1
1818
with:
19-
ruby-version: '3.2' # Or your project's Ruby version
20-
bundler-cache: true
21-
22-
- name: Update Gemfile.lock if needed
23-
run: |
24-
bundle config set --local frozen false
25-
bundle install --jobs 4 --retry 3 || true
26-
bundle config set --local frozen true
19+
ruby-version: '3.2'
20+
bundler-cache: false # Disabled to allow lockfile updates
2721

2822
- name: Install dependencies
2923
run: bundle install --jobs 4 --retry 3
3024

25+
- name: Show updated Gemfile.lock (for debugging)
26+
if: failure()
27+
run: cat Gemfile.lock
28+
3129
- name: Build the gem
3230
run: gem build *.gemspec
3331

0 commit comments

Comments
 (0)