Thanks to visit codestin.com Credit goes to github.com
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 ac05714 commit 59de183Copy full SHA for 59de183
1 file changed
.github/workflows/ci.yml
@@ -148,12 +148,7 @@ jobs:
148
run: |
149
md binaries
150
copy LICENSE binaries
151
- if (Test-Path "x64\Release") {
152
- Set-Variable -Name "prefix" -Value "x64\Release"
153
- } else {
154
- Set-Variable -Name "prefix" -Value "x64\Release_TS"
155
- }
156
- copy $prefix\php_redis.dll binaries
+ Get-ChildItem -Recurse -Filter "php_redis.dll" | ForEach-Object {Copy-Item -Path $_.FullName -Destination "binaries"}
157
- name: Upload artifacts
158
uses: actions/upload-artifact@v2
159
with:
0 commit comments