We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 020b62b commit 58c2694Copy full SHA for 58c2694
.github/workflows/php.yml
@@ -92,6 +92,13 @@ jobs:
92
-o "artifact_wrapper.zip"
93
94
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
102
103
if ! gh release view php-${version} -R ${{ github.repository }}; then
104
gh release create php-${version} php-* -t "PHP ${version}" -n "Release of PHP version ${version}" -R ${{ github.repository }}
0 commit comments