Skip to content

Commit 2da9299

Browse files
authored
Update download-artifact path reference (#905)
1 parent b575f6e commit 2da9299

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)