We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcae5e0 commit 5d7c62dCopy full SHA for 5d7c62d
Activities/.pipelines/tests/steps/run_python.yml
@@ -25,7 +25,8 @@ steps:
25
ignoreLASTEXITCODE: true
26
script: |
27
cd ${{ parameters.packagesFolder }}
28
- $file = Get-ChildItem -Path .\ -Filter *.nupkg -Recurse -File -Name -Exclude *symbols*
+ $file = Get-ChildItem -Path .\ -Filter *.nupkg -Recurse -File | Where-Object { $_.Name -like "*.Activities.*" -and $_.Name -notlike "*symbols*" } | Select-Object -ExpandProperty Name
29
+ Write-Host "Found activities package file $file"
30
$dot = $file.LastIndexof('.')
31
$file = $file.Replace(".nupkg","")
32
$act = $file.LastIndexof('Activities.')
0 commit comments