We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 766c25d commit dabbd69Copy full SHA for dabbd69
1 file changed
.github/workflows/releases.yml
@@ -16,18 +16,16 @@ jobs:
16
- name: Set up Ruby
17
uses: ruby/setup-ruby@v1
18
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
+ ruby-version: '3.2'
+ bundler-cache: false # Disabled to allow lockfile updates
27
28
- name: Install dependencies
29
run: bundle install --jobs 4 --retry 3
30
+ - name: Show updated Gemfile.lock (for debugging)
+ if: failure()
+ run: cat Gemfile.lock
+
31
- name: Build the gem
32
run: gem build *.gemspec
33
0 commit comments