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 23f02b6 commit 22cdd60
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 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 PGUSER=postgres
sudo su - postgres export PGUSER
sudo su - postgres PGPORT=5432
sudo su - postgres export PGPORT
sudo su - postgres PGHOST=localhost
sudo su - postgres export PGHOST
sudo su - postgres createdb dbt
sudo su - postgres bash PGUSER=postgres
sudo su - postgres bash export PGUSER
sudo su - postgres bash PGPORT=5432
sudo su - postgres bash export PGPORT
sudo su - postgres bash PGHOST=localhost
sudo su - postgres bash export PGHOST
sudo su - postgres bash createdb dbt

0 comments on commit 22cdd60

Please sign in to comment.