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 1daacc1 commit 4e23634Copy full SHA for 4e23634
publish.ps1
@@ -13,6 +13,6 @@ if (-not (Test-Path -Path ('.\build\' + $Config.ModuleName))) {
13
[System.String]$NuGetApiKey = Read-Host -Prompt 'Please enter the NuGetApiKey'
14
15
# Publish the build to PSGallery
16
-Publish-Module -Name ('.\build\' + $Config.ModuleName) `
+Publish-Module -Path ('.\build\' + $Config.ModuleName) `
17
-Repository 'PSGallery' `
18
- -NuGetApiKey $NuGetApiKey
+ -NuGetApiKey $NuGetApiKey -Verbose
0 commit comments