File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed
Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - main
7+ - v0.4
78 pull_request :
89 branches :
910 - main
11+ - v0.4
1012
1113env :
1214 OPENAI_API_KEY : ${{ secrets.OPENAI_API_KEY }}
15+ POSTGRES_USER : postgres
16+ POSTGRES_PASSWORD : postgres
17+ POSTGRES_DB : postgres
18+ POSTGRES_HOST : localhost
19+ POSTGRES_PORT : 5432
1320
1421jobs :
1522 build :
1825 postgres :
1926 image : postgres:16
2027 env :
21- POSTGRES_HOST : localhost
22- POSTGRES_PORT : 5432
23- POSTGRES_USER : postgres
24- POSTGRES_PASSWORD : postgres
25- POSTGRES_DB : postgres
28+ POSTGRES_USER : ${{ env.POSTGRES_USER }}
29+ POSTGRES_PASSWORD : ${{ env.POSTGRES_PASSWORD }}
30+ POSTGRES_DB : ${{ env.POSTGRES_DB }}
2631 options : >-
2732 --health-cmd pg_isready
2833 --health-interval 5s
Original file line number Diff line number Diff line change 1+ POSTGRES_HOST = localhost
2+ POSTGRES_PORT = 5432
3+ POSTGRES_USER = postgres
4+ POSTGRES_PASSWORD = postgres
5+ POSTGRES_DB = postgres
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments