CocoaPods制作并提交
#进入创建好的本地项目
cd /Users/admin/Desktop/TestDemo/TestPlaySound
#在GitHub上创建同名项目,并通过终端连接远程仓库
git remote add origin git@github.com:Liu-Peng/TestPlaySound.git
git fetch
git merge origin/master master
#创建.podspec文件
pod spec create LPPlaySound
#验证
pod lib lint
#提交到github
git add .
git commit -m "version 0.0.1"
git push origin master
#可以直接使用GitHub Desktop 来管理提交
#创建tag; pod trunk 提交时.podspec文件中版本对应tag
git tag 0.0.2
git push --tags
#注册 trunk 首次会收到邮件,点击确认
pod trunk register liupeng426@126.com 'Liu-Peng' --description='Mac Book Pro' --verbose
pod trunk me # 查看注册信息,以及发布过得的Pods
cd # 在{project}.podspec文件的路径下执行
pod trunk push LPPlaySound.podspec #提交.podspec文件; 一直不成功;先 git tag (版本对应)就成功了
#返回结果
#
🎉 Congrats
🚀 LPPlaySound (0.0.1) successfully published
📅 June 13th, 02:54
🌎 https://cocoapods.org/pods/LPPlaySound
👍 Tell your friends!
#
pod search LPPlaySound #搜不到,可能有延迟需要等一段时间
网友评论