有没有办法在appveyor构建脚本中添加自定义PowerShell脚本以将模块发布到powershellgallery? - 模块源将在github仓库中。
如果没有,也许在appveyor web配置中可以吗?
答案 0 :(得分:3)
我相信您可以创建基于Publish-Module command的脚本并将其插入build pipeline的右侧阶段。例如,如果您决定在测试阶段之后发布,它将在YAML中显示如下:
after_test:
- ps: Publish-Module -Name "MyDscModule" -NuGetApiKey "11e4b435-6cb4-4bf7-8611-5162ed75eb73"
或在用户界面中,您需要转到设置>测试>自动>测试后的脚本> PS 并输入发布脚本。