Skip to content

Commit d23011f

Browse files
committed
chore: Skip installing as many gems as needed when releasing
1 parent 88f41ab commit d23011f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
contents: write
1515
id-token: write
1616

17+
env:
18+
BUNDLE_JOBS: 4
19+
BUNDLE_RETRY: 10
20+
BUNDLE_WITHOUT: development test
21+
1722
steps:
1823
- uses: actions/checkout@v4
1924
- uses: ruby/setup-ruby@v1

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ gemspec
66

77
gem 'rake'
88
gem 'rake-release', '~> 1.0'
9-
gem 'rubocop-config', github: 'jgraichen/rubocop-config', ref: 'v12', require: false
109

1110
group :development do
1211
gem 'appraisal'
1312
gem 'benchmark-ips'
1413
gem 'pry'
1514
gem 'pry-byebug'
15+
gem 'rubocop-config', github: 'jgraichen/rubocop-config', ref: 'v12', require: false
1616
end
1717

1818
group :test do

0 commit comments

Comments
 (0)