From b85a9d0d4cae1a7e71ee6a651fe1b4ceca922ae0 Mon Sep 17 00:00:00 2001 From: Sathvik Date: Fri, 23 Feb 2024 23:23:39 +0530 Subject: [PATCH] used env variables --- .github/workflows/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 22451d6..478d886 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -14,8 +14,8 @@ jobs: # Docker Hub image image: postgres:15.2 env: - POSTGRES_USER: ${{ secrets.POSTGRES_USER }} - POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} + POSTGRES_USER: ${{ env.POSTGRES_USER }} + POSTGRES_PASSWORD: ${{ env.POSTGRES_PASSWORD }} POSTGRES_DB: wd-todo-test # Set health checks to wait until postgres has started options: >-