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 158e59e commit 2ff4167
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 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
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 2ff4167

Please sign in to comment.