File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,13 +76,13 @@ jobs:
7676
7777 - name : Publish to NuGet
7878 if : startsWith(github.ref, 'refs/tags/v')
79- shell : pwsh
80- run : |
81- Write-Host "Publishing NuGet packages..."
82- $files = Get-ChildItem -Path "artifacts" -Filter "*.nupkg"
83- foreach ($f in $files) {
84- dotnet nuget push $f.FullName --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
85- }
79+ shell : pwsh
80+ run : |
81+ Write-Host "Publishing NuGet packages..."
82+ $files = Get-ChildItem -Path "artifacts" -Filter "*.nupkg"
83+ foreach ($f in $files) {
84+ dotnet nuget push $f.FullName --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
85+ }
8686 - name : Upload artifacts
8787 uses : actions/upload-artifact@v4
8888 with :
You can’t perform that action at this time.
0 commit comments