Skip to content

Commit

Permalink
test add environment variables from script
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Jan 29, 2024
1 parent 22cdd60 commit 158e59e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/setup-postgres-linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 158e59e

Please sign in to comment.