Skip to content

Commit

Permalink
chore: fix allowed_push_host
Browse files Browse the repository at this point in the history
  • Loading branch information
aristotelesbr committed Sep 29, 2024
1 parent 5d78f72 commit 0cd22ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
run: gem build lennarb.gemspec
- name: Push gem to RubyGems
env:
RUBYGEMS_HOST: "https://rubygems.org"
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
run: |
ls *.gem
Expand Down
4 changes: 2 additions & 2 deletions lennarb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.homepage = 'https://aristotelesbr.github.io/lennarb'

spec.metadata = {
'allowed_push_host' => 'https://rubygems.org/gems/lennarb',
'allowed_push_host' => 'https://rubygems.org',
'changelog_uri' => 'https://github.com/aristotelesbr/lennarb/blob/master/changelog.md',
'homepage_uri' => 'https://aristotelesbr.github.io/lennarb',
'rubygems_mfa_required' => 'true',
Expand All @@ -35,8 +35,8 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'covered', '~> 0.25.1'
spec.add_development_dependency 'minitest', '~> 5.20'
spec.add_development_dependency 'puma', '~> 6.4'
spec.add_development_dependency 'rake', '~> 13.1'
spec.add_development_dependency 'rack-test', '~> 2.1'
spec.add_development_dependency 'rake', '~> 13.1'
spec.add_development_dependency 'rubocop', '~> 1.59'
spec.add_development_dependency 'rubocop-minitest', '~> 0.33.0'
end

0 comments on commit 0cd22ca

Please sign in to comment.