File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 7373 run : dotnet nuget add source https://nuget.pkg.github.com/Dotnet-Boxed/index.json --name GitHub --username RehanSaeed --password ${{secrets.GITHUB_TOKEN}}
7474 shell : pwsh
7575 - name : ' Dotnet NuGet Push'
76- run : dotnet nuget push .\windows-latest\ *.nupkg --api-key ${{ github.token }} --source GitHub --skip-duplicate
76+ run : dotnet nuget push .\*.nupkg --api-key ${{ github.token }} --source GitHub --skip-duplicate
7777 shell : pwsh
7878
7979 push-nuget :
9191 name : ' windows-latest'
9292 - name : ' Dotnet NuGet Push'
9393 run : |
94- Get-ChildItem .\windows-latest -Filter *.nupkg |
94+ Get-ChildItem .\ -Filter *.nupkg |
9595 Where-Object { !$_.Name.Contains('preview') } |
9696 ForEach-Object { dotnet nuget push $_ --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} }
9797 shell : pwsh
You can’t perform that action at this time.
0 commit comments