1

解决方案

归功于mklement0

这是我最终将我的bin\MyModule.0.1.0.nupkg模块发布到 PSGallery 的操作:

  1. 重命名bin\MyModule.0.1.0.nupkgbin\MyModule.0.1.0.zip
  2. 提取bin\MyModule.0.1.0.zipbin\MyModule\(提取的文件夹的名称必须与.psd1里面的文件名匹配,所以在我的例子中,现在有一个bin\MyModule\MyModule.psd1文件)。
  3. 从提取的文件夹中删除[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 文件:

.nu​​pkg 的结构已创建,因此它可以作为 PSRepository 的一部分加载。此外,此包采用分发到 PSGallery 的格式。

我猜这是可能的,但我只是不知道该怎么做。任何帮助,将不胜感激

4

1 回答 1

1

从该模块的 2.2.5PowerShellGet版(即 PowerShell 7.2 预览版附带的版本)开始,用于将 PowerShell 模块发布到 PowerShell 库的cmdletPublish-Module支持上传文件。.nupkg

相反,它需要一个包含 PowerShell 模块的(非压缩)目录来发布[1]然后.nupkg在后台将其压缩为(临时)NuGet 包(存档)并上传到库。

我不熟悉 AutoRest.PowerShell,但如果它声称.nupkg它创建的档案与 PowerShell 库兼容,您可以尝试提取(解压缩)这样的档案(NuGet 文件是 ZIP 档案,因此您可以将它们传递给Expand-Archive)进入一个目录并尝试将该目录的路径传递给Publish-Module-Path参数(选择包含模块清单文件 ( .psd1) 的目录,该目录可能是一个子文件夹)。


[1] 如果要发布的模块位于 中列出的目录之一$env:PSModulePath,则可以从模块的名称推断其目录位置,并将其传递给-Name参数。

于 2021-02-18T04:27:40.037 回答