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.
2 parents 2ad1818 + efc077c commit ea291c5Copy full SHA for ea291c5
1 file changed
.github/workflows/release.yml
@@ -119,7 +119,7 @@ jobs:
119
shell: pwsh
120
run: |
121
$ErrorActionPreference = 'Stop'
122
- $packages = Get-ChildItem -Path src -Recurse -Filter '*.nupkg' | Where-Object { $_.FullName -like '*\bin\Release\*' }
+ $packages = Get-ChildItem -Path src -Recurse -Filter 'DynamicData.*.nupkg' | Where-Object { $_.FullName -like '*\bin\Release\*' }
123
if (-not $packages) { throw "No .nupkg files found under src/**/bin/Release/." }
124
foreach ($pkg in $packages) {
125
dotnet nuget push -s $env:SOURCE_URL -k $env:NUGET_AUTH_TOKEN --skip-duplicate $pkg.FullName
0 commit comments