소스 검색

set POSTGRES_PORT to 5433

AppFlowy.IO 3 년 전
부모
커밋
83b30a2185
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .github/workflows/backend_general.yml

+ 2 - 2
.github/workflows/backend_general.yml

@@ -69,7 +69,7 @@ jobs:
         working-directory: backend/
         run: |
           sudo apt-get install libpq-dev -y
-          SKIP_DOCKER=true ./scripts/init_database.sh
+          SKIP_DOCKER=true POSTGRES_PORT=5433 ./scripts/init_database.sh
 
       - name: Check sqlx-data.json is up-to-date
         working-directory: backend/
@@ -146,7 +146,7 @@ jobs:
         working-directory: backend/
         run: |
           sudo apt-get install libpq-dev -y
-          SKIP_DOCKER=true ./scripts/init_database.sh
+          SKIP_DOCKER=true POSTGRES_PORT=5433 ./scripts/init_database.sh
           
       - run: rustup component add clippy
         working-directory: backend/