step1:在github上构建新的release
step2:使用专有编辑器(如sublime)编辑podspec文件,更改版本号和git的souce tag,其中tag值必须和上一步的release名称一致,否则无法找到
step3:pod trunk register yourmail@xxx.com ‘YourAccountName’ –description=’YourComputerDescription’ // 注册提交用的计算机设备并通过邮箱认证
step4:pod spec lint /Users/achen/Desktop/YourProj.podspec –verbose // 检测podspec文件是否ok,verbose用于查看可能的具体出错信息,最后一个参数是文件具体路径,下同。
step5:pod trunk push /Users/achen/Desktop/YourProj.podspec // push新版本信息到cocoapods库
step6:通过工程验证新版本能否正常安装使用
参考链接:https://guides.cocoapods.org/making/getting-setup-with-trunk.html
时间: 2024-10-24 17:44:15