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 @@ -57,13 +57,13 @@ jobs:
57
57
run : dotnet test demo/Demo.sln -c Release -p:BLLUseLocalNugetPackages=true
58
58
59
59
- name : Push package to NuGet
60
- run : dotnet nuget push output/nuget/**/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
60
+ run : dotnet nuget push --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json output/nuget/**/*.nupkg
61
61
62
62
- name : Add GitHub NuGet Source
63
63
run : dotnet nuget add source https://nuget.pkg.github.com/isc30/index.json --name "github" --username isc30 --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text
64
64
65
65
- name : Push package to GitHub
66
- run : dotnet nuget push output/nuget/**/*.nupkg --source "github" --skip-duplicate
66
+ run : dotnet nuget push --skip-duplicate --source "github" output/nuget/**/*.nupkg
67
67
68
68
- name : Prepare for Github Pages deployment
69
69
run : find output/demo -name "*.gitignore" -type f -print0 | xargs -0 /bin/rm -f
You can’t perform that action at this time.
0 commit comments