-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e2443d0
commit 289726c
Showing
2 changed files
with
6 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,30 +38,16 @@ jobs: | |
FLOW_DATABASE_PASSWORD: ${{ secrets.FLOW_DATABASE_PASSWORD }} | ||
FLOW_DATABASE_PORT: ${{ secrets.FLOW_DATABASE_PORT }} | ||
FLOW_DATABASE_USER: ${{ secrets.FLOW_DATABASE_USER }} | ||
|
||
name: Update database | ||
runs-on: ubuntu-latest | ||
services: | ||
db: | ||
image: postgis/postgis:15-3.4-alpine | ||
env: | ||
POSTGRES_USER: ${{ secrets.FLOW_DATABASE_USER }} | ||
POSTGRES_PASSWORD: ${{ secrets.FLOW_DATABASE_PASSWORD }} | ||
POSTGRES_DB: ${{ secrets.FLOW_DATABASE_NAME }} | ||
TARGET_DATABASE_USER: ${{ secrets.TARGET_DATABASE_USER }} | ||
TARGET_DATABASE_PASSWORD: ${{ secrets.TARGET_DATABASE_PASSWORD }} | ||
TARGET_DATABASE_NAME: ${{ secrets.TARGET_DATABASE_NAME }} | ||
TARGET_DATABASE_PORT: ${{ secrets.TARGET_DATABASE_PORT }} | ||
TARGET_DATABASE_HOST: ${{ secrets.TARGET_DATABASE_HOST }} | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
ports: | ||
- 5432:5432 | ||
steps: | ||
- name: checkout code | ||
uses: actions/checkout@v4 | ||
- name: Initialize database service from compose | ||
uses: hoverkraft-tech/[email protected] | ||
with: | ||
compose-file: "compose.yml" | ||
- name: install node | ||
uses: actions/setup-node@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters