File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 31
31
env :
32
32
NEXT_PUBLIC_QUESTION_SERVICE_URL : ${{ secrets.NEXT_PUBLIC_QUESTION_SERVICE_URL }}
33
33
NEXT_PUBLIC_AUTH_SERVICE_URL : ${{ secrets.NEXT_PUBLIC_AUTH_SERVICE_URL }}
34
+ NEXT_PUBLIC_USER_SERVICE_URL : ${{ secrets.NEXT_PUBLIC_USER_SERVICE_URL }}
35
+ USER_SERVICE_URL : ${{ secrets.USER_SERVICE_URL }}
36
+ QUESTION_SERVICE_URL : ${{ secrets.QUESTION_SERVICE_URL }}
34
37
run : |
35
38
gcloud builds submit --config cloudbuild.yaml \
36
39
--substitutions _NEXT_PUBLIC_QUESTION_SERVICE_URL=$NEXT_PUBLIC_QUESTION_SERVICE_URL,_NEXT_PUBLIC_AUTH_SERVICE_URL=$NEXT_PUBLIC_AUTH_SERVICE_URL
Original file line number Diff line number Diff line change @@ -12,6 +12,12 @@ steps:
12
12
" NEXT_PUBLIC_QUESTION_SERVICE_URL=${_NEXT_PUBLIC_QUESTION_SERVICE_URL}" ,
13
13
" --build-arg" ,
14
14
" NEXT_PUBLIC_AUTH_SERVICE_URL=${_NEXT_PUBLIC_AUTH_SERVICE_URL}" ,
15
+ " --build-arg" ,
16
+ " NEXT_PUBLIC_USER_SERVICE_URL=${_NEXT_PUBLIC_USER_SERVICE_URL}" ,
17
+ " --build-arg" ,
18
+ " USER_SERVICE_URL=${_USER_SERVICE_URL}" ,
19
+ " --build-arg" ,
20
+ " QUESTION_SERVICE_URL=${_QUESTION_SERVICE_URL}" ,
15
21
" -f" ,
16
22
" peerprep-fe/Dockerfile" ,
17
23
" peerprep-fe" ,
You can’t perform that action at this time.
0 commit comments