mirror of
https://github.com/phpredis/phpredis.git
synced 2026-06-19 07:35:31 +00:00
Use Get-ChildItem instead of a hardcoded path for php_relay.dll
This commit is contained in:
committed by
Michael Grunder
parent
ac057145fc
commit
59de183bd4
@@ -148,12 +148,7 @@ jobs:
|
||||
run: |
|
||||
md binaries
|
||||
copy LICENSE binaries
|
||||
if (Test-Path "x64\Release") {
|
||||
Set-Variable -Name "prefix" -Value "x64\Release"
|
||||
} else {
|
||||
Set-Variable -Name "prefix" -Value "x64\Release_TS"
|
||||
}
|
||||
copy $prefix\php_redis.dll binaries
|
||||
Get-ChildItem -Recurse -Filter "php_redis.dll" | ForEach-Object {Copy-Item -Path $_.FullName -Destination "binaries"}
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user