Skip to content

Commit

Permalink
workflows bugfix use defined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
silverqx committed Apr 11, 2024
1 parent 973884d commit d9bccd6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-cl-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ jobs:
$serviceName = 'MySQL'
Write-Output '::group::Get-Service'
$mysqlService = Get-Service MySQL
$mysqlService = Get-Service $serviceName
Write-Output $mysqlService
Write-Output '::endgroup::'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc2019-qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
$serviceName = 'MySQL'
Write-Output '::group::Get-Service'
$mysqlService = Get-Service MySQL
$mysqlService = Get-Service $serviceName
Write-Output $mysqlService
Write-Output '::endgroup::'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc2022-qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ jobs:
$serviceName = 'MySQL'
Write-Output '::group::Get-Service'
$mysqlService = Get-Service MySQL
$mysqlService = Get-Service $serviceName
Write-Output $mysqlService
Write-Output '::endgroup::'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msys2-ucrt64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:
$serviceName = 'MySQL'
Write-Output '::group::Get-Service'
$mysqlService = Get-Service MySQL
$mysqlService = Get-Service $serviceName
Write-Output $mysqlService
Write-Output '::endgroup::'
Expand Down

0 comments on commit d9bccd6

Please sign in to comment.