RubyGems Deployment
This page documents deployments using dpl v1 which is currently the legacy version. The dpl v2 is released, and we recommend useig it. Please see our blog post for details. dpl v2 documentation can be found here.
Travis CI can automatically release your Ruby gem to RubyGems after a successful build.
For a minimal configuration, all you need to do is add the following to your .travis.yml
:
deploy:
provider: rubygems
api_key: "YOUR API KEY"
Most likely you would only want to deploy to RubyGems when a new version of your package is cut. To do this, you can tell Travis CI to only deploy on tagged commits, like so:
deploy:
provider: rubygems
api_key: "YOUR API KEY"
on:
tags: true
If you tag a commit locally, remember to run git push --tags
to ensure that your tags are uploaded to GitHub.
You can retrieve your api key by following these instructions. It is recommended to encrypt that key. Assuming you have the Travis CI command line client installed, you can do it like this:
travis encrypt --add deploy.api_key
You will be prompted to enter your api key on the command line.
You can also have the travis
tool set up everything for you:
travis setup rubygems
Keep in mind that the above command has to run in your project directory, so it can modify the .travis.yml
for you.
Pre-release #
Instead of releasing for each new version of your gem, you can have Travis CI create a prerelease for each build.
This gives your gem’s users the option to download a newer, possibly more unstable version of your gem.
To enable this, add the following line to your gemspec, underneath your existing version
line:
s.version = "#{s.version}-alpha-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV['TRAVIS']
If your gem’s current version is 1.0.0, then Travis CI will create a prerelease with the version 1.0.0-alpha-20, where 20
is the build number.
Gem Release #
By default, we will try to release a gem by the same name as the repository. For example, if you release a gem from the GitHub repository travis-ci/travis-chat without explicitly specify the name of the application, Travis CI will try to release the gem named travis-chat.
You can explicitly set the name via the gem option:
deploy:
provider: rubygems
api_key: ...
gem: my-gem-123
It is also possible to release different branches to different gems:
deploy:
provider: rubygems
api_key: ...
gem:
master: my-gem
old: my-gem-old
If these gems belong to different RubyGems accounts, you will have to do the same for the API key:
deploy:
provider: rubygems
api_key:
master: ...
old: ...
gem:
master: my-gem
old: my-gem-old
Use Gemspec #
If you like, you can specify an alternate option with the gemspec
option:
deploy:
provider: rubygems
api_key: ...
gemspec: my-gemspec.gemspec
Release Branch #
If you have branch-specific options, as shown above, Travis CI will automatically figure out which branches to release from. Otherwise, it will only be released from your master branch.
You can also explicitly specify the branch to release from with the on option:
deploy:
provider: rubygems
api_key: ...
on:
branch: production
Alternatively, you can also configure it to release from all branches:
deploy:
provider: rubygems
api_key: ...
on:
all_branches: true
Builds triggered from Pull Requests will never trigger a release.
Release build artifacts #
After your tests run and before the release, Travis CI will clean up any additional files and changes you made.
Maybe that is not what you want, as you might generate some artifacts that are supposed to be released, too. There is now an option to skip the clean up:
deploy:
provider: rubygems
api_key: ...
skip_cleanup: true
Conditional Releases #
You can deploy only when certain conditions are met.
See Conditional Releases with on:
.
Register Gem #
Note that the gem you upload must be registered beforehand. If the gem does not exist on the host to which it is uploaded, deployment will fail. See this GitHub issue for details.
Run Commands Before or After Release #
Sometimes, you want to run commands before or after releasing a gem. You can use the before_deploy
and after_deploy
stages for this. These will only be triggered if Travis CI is actually pushing a release.
before_deploy: "echo 'ready?'"
deploy:
..
after_deploy:
- ./after_deploy_1.sh
- ./after_deploy_2.sh