Skip to content

Commit

Permalink
Changing postgres server host
Browse files Browse the repository at this point in the history
  • Loading branch information
chiroito committed May 10, 2023
1 parent c14d8b4 commit 6a63463
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ jobs:
postgres:
image: postgres
env:
POSTGRES_HOST: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432

steps:
- uses: actions/checkout@v3
Expand All @@ -46,5 +47,5 @@ jobs:
bash bin/native-image-test.sh
./artifact-test/target/artifact-test
env:
POSTGRES_HOST: postgres
POSTGRES_HOST: localhost
POSTGRES_PASSWORD: postgres
5 changes: 3 additions & 2 deletions .github/workflows/release-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
postgres:
image: postgres
env:
POSTGRES_HOST: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432

steps:
- uses: actions/checkout@v3
Expand All @@ -51,7 +52,7 @@ jobs:
bash bin/native-image-test.sh
./artifact-test/target/artifact-test
env:
POSTGRES_HOST: postgres
POSTGRES_HOST: localhost
POSTGRES_PASSWORD: postgres

release:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ jobs:
postgres:
image: postgres
env:
POSTGRES_HOST: postgres
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432

steps:
- uses: actions/checkout@v3
Expand All @@ -49,7 +50,7 @@ jobs:
bash bin/native-image-test.sh
./artifact-test/target/artifact-test
env:
POSTGRES_HOST: postgres
POSTGRES_HOST: localhost
POSTGRES_PASSWORD: postgres

release:
Expand Down

0 comments on commit 6a63463

Please sign in to comment.