-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpodspec.sh
More file actions
executable file
·61 lines (51 loc) · 1.33 KB
/
podspec.sh
File metadata and controls
executable file
·61 lines (51 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
# 如果目录下有一个podspec文件,直接询问版本号,然后打包验证、发布
# 如果目录下有多个podspec文件,遍历每一个podspec文件,询问版本号,然后打包验证、发布
PARAM1=$1
function cmd_push(){
# 输入版本号
while :
do
if [ "$PARAM1" == "" ];then
read -p "请输入${FILENAME}版本号: " PARAM1
else
break
fi
done
# 更新podspec
sed -i "" "s/s.version\([ ]\{1,\}\)=\([ ]\{1,\}\)\([\'|\"]\)\([^\"]\{1,\}\([\'|\"]\)\)/s.version = \"${PARAM1}\"/g" ${FILENAME}
# 打包验证
git add --all
git commit -am "update podspec"
git push origin
git tag ${PARAM1}
git push --tags
pod lib lint
# 发布
read -p "现在要发布${FILENAME}吗? y/n: " pushnow
if [ "$pushnow" == "y" ];then
echo "> pod trunk push ${FILENAME}"
pod trunk push ${FILENAME}
fi
}
function cmd_checkfile(){
count=$(ls *.podspec | wc -l)
# 遍历每一个podspec文件
for FILENAME in *.podspec
do
if [ $count -gt 1 ]; then
read -p "检测到了${FILENAME},是否是您要发布的podspec? y/n: " yn
if [ "$yn" == "y" ];then
cmd_push
fi
elif [ $count == 1 ]; then
cmd_push
else
echo -e "> \\033[0;31m没有找到podspec。\\033[0;39m"
fi
done
}
case $PARAM1 in
'docs'|'help') open https://xaoxuu.com/wiki/podspec.sh/ ;;
*) cmd_checkfile ;;
esac