You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sentry exposes a simple Deploy API, where we could send the commit + version number. This helps to categorize issues and see if they are fixed by a release.
From their doc:
# Create a new deploy
curl https://sentry.io/api/0/organizations/$ORGANIZATION_SLUG/releases/$RELEASE_VERSION/deploys/ \
-X POST \
-H 'Authorization: Bearer {TOKEN}' \
-H 'Content-Type: application/json' \
-d ' { "environment": "production", "name": "my-deploy"}'
The text was updated successfully, but these errors were encountered:
Sentry exposes a simple Deploy API, where we could send the commit + version number. This helps to categorize issues and see if they are fixed by a release.
From their doc:
The text was updated successfully, but these errors were encountered: