Skip to content
Compare
Choose a tag to compare
@sentry-release-bot sentry-release-bot released this 03 Mar 09:20

Version 3.0.0 contains breaking changes:

  • feat(sourcemaps)!: Enable injecting debug ids by default (#272) by @andreiborza

The action now automatically injects Debug IDs into your JavaScript source files and source maps to ensure your stacktraces can be
properly un-minified.

This is a breaking change as it modifies your source files. You can disable this behavior by setting inject: false:

- uses: getsentry/action-release@v3
  with:
    environment: 'production'
    sourcemaps: './dist'
    inject: false

Read more about Artifact Bundles and Debug IDs here.