We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91f3a90 commit 8f16fb2Copy full SHA for 8f16fb2
.appveyor.yml
@@ -26,5 +26,5 @@ after_test:
26
artifacts:
27
- path: upm-ci~\packages\*
28
name: npm
29
-- path: build\nuget\**\*.nupkg
+- path: build\nuget\**\*nupkg
30
name: nuget
publish.sh
@@ -66,6 +66,6 @@ if [[ x"${PUBLISH_URL:-}" == x"" ]]; then
66
exit 1
67
fi
68
69
-for p in "$DIR/build/nuget/**/*.nupkg"; do
70
- dotnet nuget push $p -k "${PUBLISH_KEY}" -s "${PUBLISH_URL}"
+for p in "$DIR/build/nuget/**/*nupkg"; do
+ dotnet nuget push $p -ApiKey "${PUBLISH_KEY}" -Source "${PUBLISH_URL}"
71
done
0 commit comments