Skip to content

Commit f27a1fd

Browse files
committed
Fix env var mapping
1 parent 5ec7e1b commit f27a1fd

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
postgres:
1818
image: postgres:14
1919
env:
20-
POSTGRES_DB: ${DB_NAME}
21-
POSTGRES_USER: ${DB_USER}
22-
POSTGRES_PASSWORD: ${DB_PASSWORD}
20+
POSTGRES_DB: ${{ env.DB_NAME }}
21+
POSTGRES_USER: ${{ env.DB_USER }}
22+
POSTGRES_PASSWORD: ${{ env.DB_PASSWORD }}
2323
ports:
2424
- 5432:5432
2525
options: >-

0 commit comments

Comments
 (0)