Skip to content

Commit 4710a5e

Browse files
committed
fix: update directory creation command to PowerShell syntax in release workflow
1 parent b6d97f1 commit 4710a5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
- name: Prepare Postgres Tools (Windows)
136136
if: runner.os == 'Windows'
137137
run: |
138-
mkdir -p migrator/embedded/bin
138+
New-Item -ItemType Directory -Force -Path migrator/embedded/bin
139139
$pgDump = (Get-ChildItem -Path "C:\Program Files\PostgreSQL" -Filter "pg_dump.exe" -Recurse).FullName | Select-Object -First 1
140140
$psql = (Get-ChildItem -Path "C:\Program Files\PostgreSQL" -Filter "psql.exe" -Recurse).FullName | Select-Object -First 1
141141
Copy-Item $pgDump -Destination migrator/embedded/bin/pg_dump_windows_amd64.exe

0 commit comments

Comments
 (0)