Capistrano Raygun Deployment makes it easy to notify Raygun of your deployments using a capistrano task.
First, install the gem:
gem install capistrano-raygun-deployment
Or if you are using Bundler, add it to your Gemfile
:
echo "gem 'capistrano-raygun-deployment'" >> Gemfile
bundle install
Then, add the following to your Capfile
:
require 'capistrano/raygun-deployment'
Finally, add this configuration to your config:
set :raygun_api_key, "YOUR_APPLICATIONS_API_KEY"
set :raygun_auth_token, "YOUR_EXTERNAL_AUTH_TOKEN"
set :raygun_release_path, "releases/LATEST" #optional, defaults to RELEASE
set :use_git, false #optional, for if you don't want to send a git hash with your deployment
set :raygun_scm_type, 'SCM Type' # must be one of GitLab, BitBucket or Github. Defaults to Github if not set
You'll need the Raygun API Key for your application, plus an External Auth Token which you can generate here.
Finally, create a release file. We default to checking RELEASE
, but you can change this by setting :raygun_release_path
This is an example release file:
version: 6.0.0
ownerName: Jamie Penney
emailAddress: [email protected]
notes: |
# Testing out the capistrano plugin
* More markdown formatting
### Jamie
Once you've written this to RELEASE
, you can deploy with cap deploy
and your deployment will be sent to Raygun!
- 1.1.0: Use
after deploy:finished
instead ofafter :published
so that deployments are only pushed to Raygun when things fully succeed. - 1.0.0: Initial release