You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- npm run build:env
- msg=$1
- ciskip="[CI SKIP]"
-
- if [[ $msg =~ deploy ]]; then
- echo "此次提交将会部署,请查看drone日志。"
- else
- echo "此次提交不部署"
- $msg="$msg$ciskip"
- fi
-
- git add .
-
- git commit --no-verify -m "$msg"
- git push
|