Skip to content

Commit 8f16fb2

Browse files
committed
Fix nuget publishing
1 parent 91f3a90 commit 8f16fb2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ after_test:
2626
artifacts:
2727
- path: upm-ci~\packages\*
2828
name: npm
29-
- path: build\nuget\**\*.nupkg
29+
- path: build\nuget\**\*nupkg
3030
name: nuget

publish.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ if [[ x"${PUBLISH_URL:-}" == x"" ]]; then
6666
exit 1
6767
fi
6868

69-
for p in "$DIR/build/nuget/**/*.nupkg"; do
70-
dotnet nuget push $p -k "${PUBLISH_KEY}" -s "${PUBLISH_URL}"
69+
for p in "$DIR/build/nuget/**/*nupkg"; do
70+
dotnet nuget push $p -ApiKey "${PUBLISH_KEY}" -Source "${PUBLISH_URL}"
7171
done

0 commit comments

Comments
 (0)