Skip to content

Commit

Permalink
workflows bugfix filename for qsql drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Jun 24, 2022
1 parent 6b968b9 commit 0ce9c4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/clang-cl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ jobs:
run: >-
$response = Invoke-WebRequest -Uri $env:URL_QMYSQL_DLLS_MSVC_X64_6_3_1
$filename = [System.Net.Mime.ContentDisposition]::new(
$response.Headers['Content-Disposition']).FileName
$filename = ($env:URL_QMYSQL_DLLS_MSVC_X64_6_3_1 -split '/')[-1]
$filepath = Join-Path -Path $(Resolve-Path -Path .) -ChildPath $filename
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/msvc2019-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ jobs:
run: >-
$response = Invoke-WebRequest -Uri $env:URL_QMYSQL_DLLS_MSVC_X64_5_15_2
$filename = [System.Net.Mime.ContentDisposition]::new(
$response.Headers['Content-Disposition']).FileName
$filename = ($env:URL_QMYSQL_DLLS_MSVC_X64_5_15_2 -split '/')[-1]
$filepath = Join-Path -Path $(Resolve-Path -Path .) -ChildPath $filename
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/msvc2022-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ jobs:
run: >-
$response = Invoke-WebRequest -Uri $env:URL_QMYSQL_DLLS_MSVC_X64_6_3_1
$filename = [System.Net.Mime.ContentDisposition]::new(
$response.Headers['Content-Disposition']).FileName
$filename = ($env:URL_QMYSQL_DLLS_MSVC_X64_6_3_1 -split '/')[-1]
$filepath = Join-Path -Path $(Resolve-Path -Path .) -ChildPath $filename
Expand Down

0 comments on commit 0ce9c4b

Please sign in to comment.