File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 41
41
env :
42
42
POSTGRES_STRING : ${{ secrets.POSTGRES_STRING }} # Format: postgres://user:password@/cloudsql/INSTANCE_CONNECTION_NAME/db_name
43
43
PROJECT_ID : ${{ secrets.PROJECT_ID }}
44
+ DB_USER : ${{ secrets.DB_USER}}
45
+ DB_NAME : ${{ secrets.DB_NAME}}
46
+ DB_PASSWORD : ${{ secrets.DB_PASSWORD}}
47
+ DB_CONNECTION_NAME : ${{ secrets.DB_CONNECTION_NAME}}
44
48
with :
45
49
app_yaml_path : app.yaml
46
50
Original file line number Diff line number Diff line change @@ -13,6 +13,10 @@ entrypoint: yarn start
13
13
env_variables :
14
14
POSTGRES_STRING : $POSTGRES_STRING
15
15
PROJECT_ID : $PROJECT_ID
16
+ DB_USER : $DB_USER
17
+ DB_NAME : $DB_NAME
18
+ DB_PASSWORD : $DB_PASSWORD
19
+ DB_CONNECTION_NAME : $DB_CONNECTION_NAME
16
20
17
21
# Automatic scaling configuration
18
22
automatic_scaling :
You can’t perform that action at this time.
0 commit comments