icon.png
- 創(chuàng)建版本
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.驗(yàn)證podspec文件
pod spec lint xxxx.podspec
如果是.a庫,使用
pod spec lint xxxx.podspec --verbose --use-libraries
5.發(fā)布
pod trunk push xxxx.podspec
如果是.a庫,使用
pod trunk push xxxx.podspec --allow-warnings --use-libraries