Skip to content

Commit

Permalink
ci,push: fixup pg ports
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdanp committed Dec 26, 2024
1 parent bfa668f commit e822e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Run tests for standard blueprint
run: ci/test-blueprint.sh standard
env:
DATABASE_URL: postgres://example@127.0.0.1:${{ job.services.postgres.postgres[5432] }}/example
DATABASE_URL: postgres://example@127.0.0.1:${{ job.services.postgres.ports[5432] }}/example
STANDARD_EXAMPLE_TEST_DB_HOST: 127.0.0.1
STANDARD_EXAMPLE_TEST_DB_PORT: ${{ job.services.postgres.ports[5432] }}
STANDARD_EXAMPLE_TEST_DB_NAME: example
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Run tests for SaaS blueprint
run: ci/test-blueprint.sh saas
env:
DATABASE_URL: postgres://example@127.0.0.1:${{ job.services.postgres.postgres[5432] }}/example
DATABASE_URL: postgres://example@127.0.0.1:${{ job.services.postgres.ports[5432] }}/example
SAAS_EXAMPLE_TEST_DB_HOST: 127.0.0.1
SAAS_EXAMPLE_TEST_DB_PORT: ${{ job.services.postgres.ports[5432] }}
SAAS_EXAMPLE_TEST_DB_NAME: example
Expand Down

0 comments on commit e822e1a

Please sign in to comment.