Skip to content

Commit ed97a23

Browse files
authored
Fix bundler mode to deployment at publish (#582)
fix #581 #580 was not sufficient. If there is a difference between the installed gems and `Gemfile.lock`, an error occurs when publishing. Therefore, we need to set `deployment` mode so that `bundle install` is performed with the contents of `Gemfile.lock`.
1 parent c522c42 commit ed97a23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
bundler-cache: true
2626
ruby-version: 3.3
27-
- run: bundle install
27+
- run: bundle install --deployment
2828
- name: Update version file with the release version
2929
run: |
3030
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then

0 commit comments

Comments
 (0)