Skip to content

Commit

Permalink
try to set the path
Browse files Browse the repository at this point in the history
  • Loading branch information
davecramer committed Apr 15, 2024
1 parent 02b65e1 commit ad208f2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ jobs:
C:\OTHERBIN\postgresql_install.exe --mode=unattended --unattendedmodeui=none --superpassword postgres --enable-components server
- name: start postgresql
shell: powershell
run: "C:\Program Files\PostgreSQL\16\bin\pg_ctl.exe" runservice -N postgresql-x64-16 -D "C:\Program Files\PostgreSQL\16\data" -w
run: |
$env:Path += "C:\Program\ Files\PostgreSQL\16\bin\"
pg_ctl.exe -D "C:\Program Files\PostgreSQL\16\data" -w
- name: get psqlodbc
uses: actions/checkout@v4
- name: 'setup msvc for psqlodbc'
Expand Down

0 comments on commit ad208f2

Please sign in to comment.