File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ jobs:
123123
124124 - name : Publish to GitHub NuGet package registry
125125 run : dotnet nuget push
126- ${{github.workspace}}/build-artifacts/ packages/*.nupkg
126+ ${{github.workspace}}/packages/*.nupkg
127127 --source "github"
128128 --api-key ${{ secrets.GITHUB_TOKEN }}
129129 --skip-duplicate
@@ -145,7 +145,7 @@ jobs:
145145
146146 - name : Upload release asset
147147 run : gh release upload ${{ github.event.release.tag_name }}
148- ${{ github.workspace }}/build-artifacts/ packages/*.*nupkg
148+ ${{ github.workspace }}/packages/*.*nupkg
149149 env :
150150 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
151151
@@ -170,7 +170,7 @@ jobs:
170170
171171 - name : Publish to NuGet.org (Releases only)
172172 run : dotnet nuget push
173- ${{github.workspace}}/build-artifacts/ packages/*.nupkg
173+ ${{github.workspace}}/packages/*.nupkg
174174 --source https://api.nuget.org/v3/index.json
175175 --api-key ${{ secrets.NUGET_KEY_MODELCONTEXTPROTOCOL }}
176176 --skip-duplicate
You can’t perform that action at this time.
0 commit comments