Issue when creating my first CocoaPod

此生再无相见时 提交于 2019-11-30 17:06:35

Add a 0.1.0 version for your github repo. Image from Github incase the link dies:

You have pointed to a branch called 0.1.0 in your podspec, and you simply need to push a branch of that name to github. Many people use tags instead of branches to indicate which commit to use for each pod version, and I suggest that you do this instead of pointing to a branch. Please post the source section of your podspec for more specific details.

You can also add a tag to your branch in terminal:

git tag 0.1.0
git push --tags
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!