Skip to content

Commit

Permalink
feat: nc
Browse files Browse the repository at this point in the history
  • Loading branch information
olahsymbo committed Jan 13, 2024
1 parent e433dc0 commit 461ae47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
db:
image: postgres:latest
env:
POSTGRES_USER: admin1
POSTGRES_PASSWORD: admin1
POSTGRES_DB: user_mgt
POSTGRES_USER: {{ secret.POSTGRES_USER }}
POSTGRES_PASSWORD: {{ secret.POSTGRES_PASSWORD }}
POSTGRES_DB: {{ secret.POSTGRES_DB }}
ports:
- 5432:5432

Expand All @@ -37,7 +37,7 @@ jobs:
- name: Create env file
run: |
touch .env
echo DB_CONNECTION_STRING="postgresql://admin1:admin1@localhost:5432/user_mgt" >> .env
echo DB_CONNECTION_STRING={{ secret.DB_CONNECTION_STRING }} >> .env
- name: Install Poetry
run: pipx install poetry
Expand Down

0 comments on commit 461ae47

Please sign in to comment.