Skip to content

Commit 863da9c

Browse files
committed
fix: sentry integration during ci/cd
1 parent 9ac06ff commit 863da9c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/cd.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ jobs:
4343
run: npm install
4444
- name: Build
4545
run: npm run build:dev
46+
env:
47+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
4648
- name: Deploy to Dev
4749
run: gcloud app deploy app.yaml --quiet --project zesty-dev
4850
- name: Post Successful Dev Deploy Notification To Slack
@@ -119,6 +121,8 @@ jobs:
119121
run: npm install
120122
- name: Build
121123
run: npm run build:stage
124+
env:
125+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
122126
- name: Deploy to Staging
123127
run: gcloud app deploy app.yaml --quiet --project zesty-stage
124128
- name: Post Successful Stage Deploy Notification To Slack

.github/workflows/ci.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141
run: npm run ci:test:setup
4242
- name: Run Tests
4343
run: npm run ci
44+
env:
45+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
4446
- name: Upload Screenshots
4547
if: ${{ failure() }}
4648
run: ./ci/scripts/upload_debug_screenshots_to_gcp.sh

0 commit comments

Comments
 (0)