chore: remove sentry sourcemap upload (#2712)

This commit is contained in:
Surya Prashanth
2025-03-11 18:52:04 +05:30
committed by GitHub
parent 1636479b71
commit eb458da5a9
2 changed files with 1 additions and 20 deletions
-18
View File
@@ -32,24 +32,6 @@ ENV TURBO_TELEMETRY_DISABLED 1
RUN yarn turbo build --filter=silo
# Sentry source maps upload stage
FROM base AS sentry-upload
WORKDIR /app
# Environment variables for Sentry (use --build-arg to pass them securely during build)
ARG SENTRY_AUTH_TOKEN
ARG SENTRY_ORG
ARG SENTRY_PROJECT
ARG SENTRY_RELEASE_VERSION
ENV SENTRY_AUTH_TOKEN=$SENTRY_AUTH_TOKEN
ENV SENTRY_ORG=$SENTRY_ORG
ENV SENTRY_PROJECT=$SENTRY_PROJECT
ENV SENTRY_RELEASE_VERSION=$SENTRY_RELEASE_VERSION
# Run the Sentry source maps upload
RUN yarn sentry:sourcemaps
FROM base AS runner
WORKDIR /app
+1 -2
View File
@@ -15,8 +15,7 @@
"check-types": "tsc --noEmit",
"check-format": "prettier --check \"**/*.{ts,tsx,md}\"",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"sentry:sourcemaps": "sentry-cli sourcemaps inject ./dist && sentry-cli sourcemaps upload --release=$SENTRY_RELEASE_VERSION ./dist"
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@linear/sdk": "^30.0.0",