We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6d97f1 commit 4710a5eCopy full SHA for 4710a5e
1 file changed
.github/workflows/release.yml
@@ -135,7 +135,7 @@ jobs:
135
- name: Prepare Postgres Tools (Windows)
136
if: runner.os == 'Windows'
137
run: |
138
- mkdir -p migrator/embedded/bin
+ New-Item -ItemType Directory -Force -Path migrator/embedded/bin
139
$pgDump = (Get-ChildItem -Path "C:\Program Files\PostgreSQL" -Filter "pg_dump.exe" -Recurse).FullName | Select-Object -First 1
140
$psql = (Get-ChildItem -Path "C:\Program Files\PostgreSQL" -Filter "psql.exe" -Recurse).FullName | Select-Object -First 1
141
Copy-Item $pgDump -Destination migrator/embedded/bin/pg_dump_windows_amd64.exe
0 commit comments