File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 4848 working-directory : src/ResultR
4949
5050 - name : Publish to NuGet
51- run : dotnet nuget push ./nupkg/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
51+ shell : pwsh
52+ run : |
53+ Get-ChildItem -Path ./nupkg -Filter *.nupkg | ForEach-Object {
54+ dotnet nuget push $_.FullName --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
55+ }
5256 working-directory : src/ResultR
5357
5458 - name : Create GitHub Release
Original file line number Diff line number Diff line change 4848 working-directory : src/ResultR.Validation
4949
5050 - name : Publish ResultR.Validation to NuGet
51- run : dotnet nuget push ./nupkg/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
51+ shell : pwsh
52+ run : |
53+ Get-ChildItem -Path ./nupkg -Filter *.nupkg | ForEach-Object {
54+ dotnet nuget push $_.FullName --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
55+ }
5256 working-directory : src/ResultR.Validation
5357
5458 - name : Create GitHub Release
You can’t perform that action at this time.
0 commit comments