forked from FEMessage/nuxt-micro-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notify.sh
executable file
·26 lines (18 loc) · 988 Bytes
/
notify.sh
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
#!/bin/sh
if [ "$TRAVIS_TEST_RESULT" != "0" ]
then
echo "build not success, bye"
exit 1
fi
git remote add github https://[email protected]/FEMessage/nuxt-micro-frontend.git > /dev/null 2>&1
git push github HEAD:master --follow-tags
GREN_GITHUB_TOKEN=$GITHUB_TOKEN yarn release
url=https://api.github.com/repos/FEMessage/nuxt-micro-frontend/releases/latest
resp_tmp_file=resp.tmp
curl -H "Authorization: token $GITHUB_TOKEN" $url > $resp_tmp_file
html_url=$(sed -n 5p $resp_tmp_file | sed 's/\"html_url\"://g' | awk -F '"' '{print $2}')
body=$(grep body < $resp_tmp_file | sed 's/\"body\"://g;s/\"//g')
version=$(echo $html_url | awk -F '/' '{print $NF}')
msg='{"msgtype": "markdown", "markdown": {"title": "nuxt-micro-frontend更新", "text": "@所有人\n# [nuxt-micro-frontend('$version')]('$html_url')\n'$body'"}}'
curl -X POST https://oapi.dingtalk.com/robot/send\?access_token\=$DINGTALK_ROBOT_TOKEN -H 'Content-Type: application/json' -d "$msg"
rm $resp_tmp_file