This is a Semantic Release plugin that creates Sentry releases.
Just install the plugin with npm install @droidsolutions-oss/semantic-release-sentry
and add a line to your plugin config:
{
"release": {
"plugins": ["...", "@droidsolutions-oss/semantic-release-sentry"]
}
}
If you don't give any configuration, the name from package.json will be used, along with the version number to create the release. If you like to use another name you can provide a packageName
setting with the name you want to have. Be aware of the name limitations Sentry gives in their docs.
Per default source maps are not uploaded to Sentry if nothing specified. If you wan't to upload source maps (for example if you have a JS/TS project) just set uploadSourceMaps
to true in the config. You can specify the sources directory with the sources
config. if not given dist
is assumed as the source directory.
This setting prevents errors from this plugin when Sentry is not reachable somehow. If set to true, all errors will be catched but this probably also means, that no Sentry release is created and no source maps are uploaded. If you rely on the existing Sentry release somewhere later in your CI pipeline (for example in the deploy job) you should also make it failsave.