Skip to content

Commit 5b41152

Browse files
committed
Update deployment yml
1 parent f6535a5 commit 5b41152

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
fe:
2525
- 'peerprep-fe/**'
2626
- 'k8s/peerprep*'
27-
- 'cloudbuilds/fe'
27+
- 'cloudbuilds/fe.yaml'
2828
api:
2929
- 'api-gateway/**'
3030
- 'k8s/api-gateway*'
31-
- 'cloudbuilds/'
31+
- 'cloudbuilds/api-gateway.yaml'
3232
question:
3333
- 'question-service/**'
3434
- 'k8s/question-service*'

cloudbuilds/fe.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ steps:
1919
"--build-arg",
2020
"NEXT_PUBLIC_TURN_SERVER=${_NEXT_PUBLIC_TURN_SERVER}",
2121
"--build-arg",
22-
"NEXT_PUBLIC_TURN_USERNAME={_NEXT_PUBLIC_TURN_USERNAME}",
22+
"NEXT_PUBLIC_TURN_USERNAME=${_NEXT_PUBLIC_TURN_USERNAME}",
2323
"--build-arg",
2424
"NEXT_PUBLIC_TURN_PASSWORD=${_NEXT_PUBLIC_TURN_PASSWORD}",
2525
"-f",

peerprep-fe/src/app/collaboration/components/AudioSharing.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const AudioSharing = () => {
2727

2828
if (!TURN_SERVER || !TURN_USERNAME || !TURN_CREDENTIAL) {
2929
// Log which specific variables are missing
30-
console.error('Missing TURN config:', {
30+
console.error('Missing TURN env:', {
3131
server: !!TURN_SERVER,
3232
username: !!TURN_USERNAME,
3333
credential: !!TURN_CREDENTIAL,

0 commit comments

Comments
 (0)