Sentry Release GitHub Action

Automatically create a Sentry release in a workflow.

A release is a version of your code that can be deployed to an environment. When you give Sentry information about your releases, you unlock a number of new features:

Additionally, releases are used for applying source maps to minified JavaScript to view original, untransformed source code. You can learn more about releases in the releases documentation.

Prerequisites

Create a Sentry Internal Integration

For this action to communicate securely with Sentry, you'll need to create a new internal integration. In Sentry, navigate to: Settings > Developer Settings > New Internal Integration.

Give your new integration a name (for example, "GitHub Action Release Integration”) and specify the necessary permissions. In this case, we need Admin access for “Release” and Read access for “Organization”.

View of internal integration permissions.

Click “Save” at the bottom of the page and grab your token, which you’ll use as your SENTRY_AUTH_TOKEN. We recommend you store this as an encrypted secret.

Usage

Adding the following to your workflow will create a new Sentry release and tell Sentry that you are deploying to the production environment.

- uses: actions/checkout@v2
- name: Create Sentry release
  uses: getsentry/action-release@v1
  env:
    SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
    SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
    SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
    # SENTRY_URL: https://sentry.io/
  with:
    environment: production

Inputs

Environment Variables

name description default
SENTRY_AUTH_TOKEN [Required] Authentication token for Sentry. See installation. -
SENTRY_ORG [Required] The slug of the organization name in Sentry. -
SENTRY_PROJECT The slug of the project name in Sentry. One of SENTRY_PROJECT or projects is required. -
SENTRY_URL The URL used to connect to Sentry. (Only required for Self-Hosted Sentry) https://sentry.io/

Parameters

name description default
environment Set the environment for this release. E.g. "production" or "staging". Omit to skip adding deploy to release. -
finalize When false, omit marking the release as finalized and released. true
ignore_missing When the flag is set and the previous release commit was not found in the repository, will create a release with the default commits count instead of failing the command. false
ignore_empty When the flag is set, command will not fail and just exit silently if no new commits for a given release have been found. false
sourcemaps Space-separated list of paths to JavaScript sourcemaps. Omit to skip uploading sourcemaps. -
started_at Unix timestamp of the release start date. Omit for current time. -
version Identifier that uniquely identifies the releases. Note: the refs/tags/ prefix is automatically stripped when version is github.ref. ${{ github.sha }}
version_prefix Value prepended to auto-generated version. For example "v". -
set_commits Specify whether to set commits for the release. Either "auto" or "skip". "auto"
projects Space-separated list of paths of projects. When omitted, falls back to the environment variable SENTRY_PROJECT to determine the project. -
url_prefix Adds a prefix to source map urls after stripping them. -
strip_common_prefix Will remove a common prefix from uploaded filenames. Useful for removing a path that is build-machine-specific. false

Examples

Troubleshooting

Suggestions and issues can be posted on the repository's issues page.

Contributing

See the Contributing Guide.

License

See the License File.