fix: fix gitlab-ci.yml

This commit is contained in:
shizhendong
2021-06-24 17:09:51 +08:00
parent ae10488cc5
commit dd67cc4001

View File

@@ -20,7 +20,7 @@ generate_git-log:
- if (( `grep git-log.html ./public/index.html | wc -l` == 0 )); then sed -i '/<body>/ a <a style="position:fixed;bottom:20px;left:40px;z-index:999;color:white;" target="_blank" href="./git-log.html">更新记录</a>' ./public/index.html; echo "添加更新记录链接"; fi;
- echo "最近的100个提交记录"
- echo "<pre>" > ./public/git-log.html
- git log -100 --pretty=format:"%ad : %s" >> ./public/git-log.html
- git log -100 --pretty=format\:"\%ad : \%s" >> ./public/git-log.html
- echo "</pre>" >> ./public/git-log.html
- echo "处理 git-log.html 结束"