Skip to content

Commit

Permalink
Fix 8.2 php deps
Browse files Browse the repository at this point in the history
Have not set 8.3 as master, the build using master deps and devpack

Fix GH#149
  • Loading branch information
dixyes committed Jan 9, 2023
1 parent 99c144f commit 2b5041d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/winext/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ runs:
$PhpVer = "${{ inputs.phpver }}"
}
$master = $PhpVer
if ($PhpVer.Equals("8.2")) {
if ($PhpVer.Equals("8.3")) {
# using master
$master = "master"
}
if ($PhpVer.Equals("8.2") -Or $PhpVer.Equals("8.1") -Or $PhpVer.Equals("8.0")) {
if ($PhpVer.Equals("8.3") -Or $PhpVer.Equals("8.2") -Or $PhpVer.Equals("8.1") -Or $PhpVer.Equals("8.0")) {
$PhpVCVer = "vs16"
} else {
$PhpVCVer = "vc15"
Expand Down

0 comments on commit 2b5041d

Please sign in to comment.