> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# mcquaig/sentry-release

Simplify common tasks for Sentry deployments.
Source: https://bitbucket.com/mcquaig/orbs


## Jobs

### sentry-release

Create a Sentry release


| Parameter | Type | Default | Description |
|---|---|---|---|
| `executor` | executor | sentry-cli | The name of custom executor to use |
| `sentry-org` | string |  | The Sentry organization slug |
| `sentry-project` | string |  | The Sentry project name |
| `sentry-environment` | string |  | The Sentry environment name |

## Executors

### sentry-cli

The docker container to use when running the Sentry release command

## Examples

### deploying-a-sentry-release

This example shows how to use this orb to provision a create a Sentry release/deploy.


```yaml
version: 2.1
orbs:
  sentry-release: mcquaig/sentry-release@0.0.1
workflows:
  deploy:
    jobs:
      - adhawk/sentry-release:
          sentry-org: my-organization-slug
          sentry-project: my-project-name
          sentry-environment: production
```