解决方案
归功于mklement0
这是我最终将我的bin\MyModule.0.1.0.nupkg
模块发布到 PSGallery 的操作:
- 重命名
bin\MyModule.0.1.0.nupkg
为bin\MyModule.0.1.0.zip
- 提取
bin\MyModule.0.1.0.zip
到bin\MyModule\
(提取的文件夹的名称必须与.psd1
里面的文件名匹配,所以在我的例子中,现在有一个bin\MyModule\MyModule.psd1
文件)。 - 从提取的文件夹中删除
[Content_Types].xml
文件(当您尝试从 PSGallery 下载和安装模块时,不删除这会导致错误,似乎是由于该文件的 2 个副本出现在结果中.nupkg
)。
然后我能够运行这个命令:
PS> Publish-Module -NuGetApiKey xxx -Path .\bin\MyModule
它奏效了!我的模块现已发布到 PSGallery。
原帖
我有一个由Autorest.Powershell生成并打包为 .nupkg 文件的 Powershell 模块。我现在想将我的模块发布到Powershell Gallery,但不知道如何让它工作。我试过了:
PS> Publish-Module -NuGetApiKey xxx -Path .\bin\MyModule.0.1.0.nupkg
Publish-Module: The specified path '.\bin\MyModule.0.1.0.nupkg' is not a valid directory.
PS> Publish-Module -NuGetApiKey xxx -Path .\bin\
Publish-Module: The specified module with path '.\bin' was not published because no valid module was found with that path.
PS> Publish-Module -NuGetApiKey xxx -Name .\bin\MyModule.0.1.0.nupkg
Get-Module: C:\Users\bport\Documents\PowerShell\Modules\PowerShellGet\2.2.5\PSModule.psm1:10630
Line |
10630 | … $module = Microsoft.PowerShell.Core\Get-Module -ListAvailable -Name …
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| The specified module 'D:\workarea\bin\MyModule.0.1.0.nupkg'
| was not found. Update the Name parameter to point to a valid path, and then try again.
Publish-Module: The specified module '.\bin\MyModule.0.1.0.nupkg' was not published because no module with that name was found in any module directory.
PS> dotnet nuget push .\bin\MyModule.0.1.0.nupkg --api-key xxx --source https://www.powershellgallery.com/api/v2
Pushing MyModule.0.1.0.nupkg to 'https://www.powershellgallery.com/api/v2'...
PUT https://www.powershellgallery.com/api/v2/
MethodNotAllowed https://www.powershellgallery.com/api/v2/ 580ms
error: Response status code does not indicate success: 405 (Method Not Allowed).
应该可以将 .nupkg 文件发布到 Powershell Gallery,因为您可以从 Powershell Gallery 下载包为 .nupkg 文件。此外,Autorest 文档说明了它生成的 nupkg 文件:
.nupkg 的结构已创建,因此它可以作为 PSRepository 的一部分加载。此外,此包采用分发到 PSGallery 的格式。
我猜这是可能的,但我只是不知道该怎么做。任何帮助,将不胜感激