Merged
Conversation
Owner
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

This pull request adds automated Sentry release tracking and environment tagging to the production deployment process. The main improvements are the introduction of a deployment script that integrates Sentry release/version management with the existing deployment workflow, and the injection of release/environment information into the worker at runtime.
Deployment & Sentry integration:
scripts/deploy-production-with-sentry.shthat automates Sentry release creation, commit association, deployment, and release finalization as part of the production deployment process. This script requires Sentry authentication/environment variables and ensures releases are properly tracked.package.jsonscripts to include adeploy:production:sentrycommand that runs the new deployment script, providing a simple way to deploy with Sentry release tracking.README.mdwith instructions for optional Sentry release tracking, including both the manual steps and the new automated script.Runtime Sentry context:
src/index.jsto include the release and environment values from environment variables, ensuring Sentry events are properly tagged for release tracking and environment separation.