Skip to content

Commit 58c2694

Browse files
authored
Update php.yml
1 parent 020b62b commit 58c2694

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/php.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,13 @@ jobs:
9292
-o "artifact_wrapper.zip"
9393
9494
unzip -o "artifact_wrapper.zip"
95+
96+
Get-ChildItem -Filter *.zip | ForEach-Object {
97+
$lowerName = $_.Name.ToLower()
98+
if ($_.Name -ne $lowerName) {
99+
Rename-Item -Path $_.FullName -NewName $lowerName
100+
}
101+
}
95102
96103
if ! gh release view php-${version} -R ${{ github.repository }}; then
97104
gh release create php-${version} php-* -t "PHP ${version}" -n "Release of PHP version ${version}" -R ${{ github.repository }}

0 commit comments

Comments
 (0)