This project is a fastlane plugin. To get started with fastlane-plugin-sentry, add it to your project by running:
fastlane add_plugin sentryThis action allows you to upload symbolication files to Sentry.
sentry_upload_dsym(
api_key: '...', # Do not use if using auth_token
auth_token: '...', # Do not use if using api_key
org_slug: '...',
project_slug: '...',
dsym_path: './App.dSYM.zip'
)auth_token is the preferred way to authentication method with Sentry. This can be obtained on https://sentry.io/api/.
api_key still works but will eventually become deprecated. This can be obtained through the settings of your project.
The following environment variables may be used in place of parameters: SENTRY_API_KEY, SENTRY_AUTH_TOKEN, SENTRY_ORG_SLUG, SENTRY_PROJECT_SLUG, and SENTRY_DSYM_PATH.
For any other issues and feedback about this plugin, please submit it to this repository.
For some more detailed help with plugins problems, check out the Plugins Troubleshooting doc in the main fastlane repo.
For more information about how the fastlane plugin system works, check out the Plugins documentation in the main fastlane repo.
fastlane automates building, testing, and releasing your app for beta and app store distributions. To learn more about fastlane, check out fastlane.tools.