Skip to content

Commit

Permalink
ci: fix env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
kdev committed May 2, 2024
1 parent 692c714 commit 207377f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
postgres:
image: postgres
env:
POSTGRES_USER: ${ PG_USER }
POSTGRES_PASSWORD: ${ PG_PW }
POSTGRES_DB: ${ PG_DB }
POSTGRES_USER: ${{ env.PG_USER }}
POSTGRES_PASSWORD: ${{ env.PG_PW }}
POSTGRES_DB: ${{ env.PG_DB }}
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
Expand Down

0 comments on commit 207377f

Please sign in to comment.