Skip to content

Commit

Permalink
chore: Update build pipeline to avoid send info to sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
cyaiox committed Sep 9, 2024
1 parent 05364a0 commit fb071c7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
- run: npm run build
env:
MODE: production
DRY_RUN: ${{ inputs.dry-run }}
# Sentry Auth Token
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}

Expand Down
1 change: 1 addition & 0 deletions packages/main/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ const config = {
sentryVitePlugin({
org: 'decentraland',
project: 'launcher',
disable: process.env.MODE === 'development' || process.env.DRY_RUN,
}),
],
};
Expand Down
1 change: 1 addition & 0 deletions packages/preload/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const config = {
sentryVitePlugin({
org: 'decentraland',
project: 'launcher',
disable: process.env.MODE === 'development' || process.env.DRY_RUN,
}),
],
};
Expand Down
1 change: 1 addition & 0 deletions packages/renderer/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const config = {
sentryVitePlugin({
org: 'decentraland',
project: 'launcher',
disable: process.env.MODE === 'development' || process.env.DRY_RUN,
}),
],
};
Expand Down
1 change: 1 addition & 0 deletions packages/shared/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const config = {
sentryVitePlugin({
org: 'decentraland',
project: 'launcher',
disable: process.env.MODE === 'development' || process.env.DRY_RUN,
}),
],
},
Expand Down

0 comments on commit fb071c7

Please sign in to comment.