Skip to content

Commit 34af945

Browse files
authored
Keep both naming conventions for master [skip ci]
1 parent effa789 commit 34af945

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/phpmaster.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,10 @@ jobs:
9393
Copy-Item -Path C:\php-snap-build\rmtools\data\db\master.json -Destination .\builds\${{ matrix.config }}.json
9494
Get-ChildItem .\master -Filter '*win32*.zip' | ForEach-Object { Copy-Item $_.FullName "$($_.DirectoryName)\$($_.Name -replace 'win32','windows')" }
9595
if (("${{ matrix.config }}" -match 'ts-windows-vs17-x(64|x86)')) {
96-
Get-ChildItem .\master -Filter '*.zip' | ForEach-Object { Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master-ts')) }
96+
Get-ChildItem .\master -Filter '*.zip' | ForEach-Object {
97+
Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master-ts'))
98+
Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master'))
99+
}
97100
} else {
98101
Get-ChildItem .\master -Filter '*.zip' | ForEach-Object { Copy-Item $_.FullName (Join-Path $_.DirectoryName ($_.Name -replace $php_version,'master')) }
99102
}

0 commit comments

Comments
 (0)