Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 489 Bytes

RELEASING.md

File metadata and controls

10 lines (8 loc) · 489 Bytes

Releasing graphql-hive on RubyGems

  1. Ensure dependencies are properly installed: bundle
  2. Ensure the is working as expected: bundle exec rspec
  3. Make sure to manually bump the version in lib/graphql-hive/version.rb
  4. Build the gem: gem build graphql-hive
  5. A new file should have been created, ex: graphql-hive-0.3.0.gem
  6. Then, login to RubyGems: gem login
  7. And publish the new version: gem push <path_to_gem_file> (ex: gem push graphql-hive-0.3.0.gem)