We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4adf94 commit dfe5b08Copy full SHA for dfe5b08
1 file changed
scripts/publish.ps1
@@ -89,9 +89,9 @@ LogGroup 'Publish-ToPSGallery' {
89
$publishPSVersion = "$($newVersion.Major).$($newVersion.Minor).$($newVersion.Patch)"
90
}
91
$psGalleryReleaseLink = "https://www.powershellgallery.com/packages/$name/$publishPSVersion"
92
- Write-Output "Publish module to PowerShell Gallery using [$apiKey]"
+ Write-Output "Publish module to PowerShell Gallery using API key from environment."
93
if ($whatIf) {
94
- Write-Output "Publish-PSResource -Path $modulePath -Repository PSGallery -ApiKey $apiKey"
+ Write-Output "Publish-PSResource -Path $modulePath -Repository PSGallery -ApiKey ***"
95
} else {
96
try {
97
Publish-PSResource -Path $modulePath -Repository PSGallery -ApiKey $apiKey
0 commit comments