解决方案
1.首先pod spec lint podName.podspec --allow-warnings 看看能否验证成功
2.如果验证码成功还是提示source_files pattern did not match any file 就说明对应的source_files下没有找到对应的文件
3.到/Users/用户/Library/Caches/CocoaPods/Pods/External/.podspec文件名/035cb9aa62b9d49f904fad1119b83da4-aebfe 目录下,自行创建对应的文件夹和内容。
4.pod repo push xxxPod xxxpodspec --verbose --use-libraries --allow-warnings 重试即可
还有一种情况情况你的podspec引用了一个没有提交的source_files
1.检查你的更新podspec 下的s.source
2.尝试更改为 spec.source = { :git => "https://github.com/theonelgq/LGQ_A_Category.git", :tag => "#{spec.version}" }
注意 如果生成库成功后 pod search 不到自己的库