私有库组件化-组件更新步骤

项目中用到pod私有库中,自定义的组件需更新的操作

  • 从Git上clone组件代码到本地
git clone http://自定义私有库url/组件名称.git
  • 更新组件代码,运行打包脚本,生成新的framework或.a

  • 修改podspec文件,更新版本号

  • 验证podspec文件

pod lib lint 组件名称.podspec --sources=https://github.com/CocoaPods/Specs.git,http://私有库url/自定义spec.git --private --verbose --no-clean --allow-warnings --use-libraries
  • git提交,打tag
git add .
git commit -m '注释'
git push

git tag 6.6.6
git push --tag
  • 提交pod私有库
pod repo push 私有库名称 组件名称.podspec --sources=https://github.com/CocoaPods/Specs.git,http://私有库url/自定义spec.git  --private --verbose --allow-warnings
  • 项目中使用
pod repo update 私有库名称

在项目中的Podfile中,更新组件版本号为新版本

pod install

你可能感兴趣的:(私有库组件化-组件更新步骤)