From 158e59ebcf613dbfadb330ed8446c50c8258dfe9 Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Mon, 29 Jan 2024 18:56:01 -0500 Subject: [PATCH] test add environment variables from script --- .github/actions/setup-postgres-linux/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-postgres-linux/action.yml b/.github/actions/setup-postgres-linux/action.yml index 4b21e2f2..3dc6a2eb 100644 --- a/.github/actions/setup-postgres-linux/action.yml +++ b/.github/actions/setup-postgres-linux/action.yml @@ -14,10 +14,10 @@ runs: - name: Configure the database shell: bash run: | - sudo su - postgres bash PGUSER=postgres + sudo su - postgres bash PGUSER="postgres" sudo su - postgres bash export PGUSER - sudo su - postgres bash PGPORT=5432 + sudo su - postgres bash PGPORT="5432" sudo su - postgres bash export PGPORT - sudo su - postgres bash PGHOST=localhost + sudo su - postgres bash PGHOST="localhost" sudo su - postgres bash export PGHOST sudo su - postgres bash createdb dbt