- 创建版本
git tag 0.0.1
2.把0.0.1版本的tag push到github上
git push origin tag 0.0.1
3.删除名为0.0.1的tag
git tag -d 0.0.1
4.验证podspec文件
pod spec lint xxxx.podspec
如果是.a库,使用
pod spec lint xxxx.podspec --verbose --use-libraries
5.发布
pod trunk push xxxx.podspec
如果是.a库,使用
pod trunk push xxxx.podspec --allow-warnings --use-libraries
网友评论