Skip to content

Commit

Permalink
Merge pull request #122 from rainforestapp/fix-push-rubygems-new-version
Browse files Browse the repository at this point in the history
Fix pushing to rubygems with newer ruby
  • Loading branch information
ubergeek42 authored Jan 22, 2025
2 parents a1cd8ca + 46723c3 commit b28b25c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ jobs:
--out ~/rspec/rspec.xml
push_to_rubygems:
docker:
# Push to rubygems breaks with Ruby > 3.2
- image: cimg/ruby:3.2.2
- image: cimg/ruby:3.4.1
auth:
username: $DOCKERHUB_USERNAME
password: $DOCKERHUB_TOKEN
Expand All @@ -43,7 +42,7 @@ jobs:
command: |
mkdir ~/.gem
echo "---
:rubygems_api_key: $RUBYGEMS_API_KEY
:rubygems_api_key: $RUBYGEMS_API_KEY
" > ~/.gem/credentials
chmod 600 ~/.gem/credentials
- run:
Expand Down
2 changes: 1 addition & 1 deletion lib/get_env/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module GetEnv
VERSION = '0.2.2'
VERSION = '0.2.3'
end

0 comments on commit b28b25c

Please sign in to comment.