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

# adhawk/sentry-release

Simplify common tasks for Sentry deployments.
Source: https://github.com/adhawk/orbs


## Jobs

### sentry-release

Create a Sentry release


| Parameter | Type | Default | Description |
|---|---|---|---|
| `executor` | executor | sentry-cli | The name of custom executor to use |
| `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: adhawk/sentry-release@1.0.0
workflows:
  deploy:
    jobs:
      - adhawk/sentry_release:
          sentry-environment: production
          sentry-project: my-project-name
```