Skip to content

Instantly share code, notes, and snippets.

@pablopaul
Forked from cannikin/deploy.rb
Last active February 5, 2019 19:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save pablopaul/892d7f8b3f031985f1c690cbeff9ef9e to your computer and use it in GitHub Desktop.
Save pablopaul/892d7f8b3f031985f1c690cbeff9ef9e to your computer and use it in GitHub Desktop.
Notify Sentry of a new release via Capistrano with Auth Token
# This task will notify Sentry via their API[1] that you have deployed
# a new release. It uses the release timestamp as the `version`
# (like 20151113182847) and the git ref as the optional `ref` value.
#
# This task requires several environment variables be set (or just
# hardcode the values in here if you like living on the edge):
#
# ENV['SENTRY_API_ENDPOINT'] : API endpoint, https://app.getsentry.com
# ENV['SENTRY_ORG'] : the organization for this app
# ENV['SENTRY_PROJECT'] : the project for this app
# ENV['SENTRY_AUTH_TOKEN'] : a valid Auth token (replaces API Key)
#
# [1]: https://docs.getsentry.com/hosted/api/releases/post-project-releases
# For Rails app, this goes in config/deploy.rb
namespace :sentry do
task :notify_deployment do
run_locally do
require 'uri'
require 'net/https'
puts "Notifying Sentry of release..."
uri = URI.parse(ENV['SENTRY_API_ENDPOINT'])
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
req = Net::HTTP::Post.new("/api/0/projects/#{ENV['SENTRY_ORG']}/#{ENV['SENTRY_PROJECT']}/releases/", initheader={'Content-Type' =>'application/json'})
req['Authorization'] = "Bearer #{ENV['SENTRY_AUTH_TOKEN']}"
req.body = %Q[{"version":"#{fetch(:release_timestamp)}","ref":"#{fetch(:current_revision)}"}]
response = http.start { |h| h.request(req) }
puts "Sentry response: #{response.body}"
end
end
end
# If you want deployments to be published in every Rails environment, put this
# in config/deploy.rb, otherwise put it your environment-specific deploy file
# i.e. config/deploy/production.rb
after 'deploy:published', 'sentry:notify_deployment'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment