File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,18 @@ jobs:
1919 - name : Build Project
2020 run : ./build.ps1
2121 shell : powershell
22+
23+ - uses : actions/upload-artifact@master
24+ with :
25+ name : NugetPackage
26+ path : artifacts
2227
2328 - name : Publish NuGet Package (NuGet.org)
2429 env :
2530 API_KEY : ${{ secrets.NUGET_API_KEY }}
26- run : dotnet nuget push ** /*.nupkg -k ${API_KEY}
31+ run : dotnet nuget push ./artifacts /*.nupkg -k ${API_KEY}
2732
2833 - name : Publish NuGet Package (GitHub)
2934 env :
3035 API_KEY : ${{ secrets.GITHUB_TOKEN }}
31- run : dotnet nuget push ** /*.nupkg -k ${API_KEY} --source "https://nuget.pkg.github.com/redth-org/index.json"
36+ run : dotnet nuget push ./artifacts /*.nupkg -k ${API_KEY} --source "https://nuget.pkg.github.com/redth-org/index.json"
You can’t perform that action at this time.
0 commit comments