明树Git Lab

Commit 17a5f7ca authored by Administrator's avatar Administrator

Add .gitlab-ci.yml

parent 6fc9af68
#-----------------------------------------------gzb-10.40.8.7--------------------------------------------------------
# 自动部署到cloud环境
stages:
- package
- deploy
package to gzb:
stage: package
image: lgatica/openssh-client
script:
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- echo "$SSH_PRIVATE_KEY_CLOUD" | tr -d '\r' > ~/.ssh/id_rsa
- chmod 700 ~/.ssh/id_rsa
- eval "$(ssh-agent -s)"
- ssh-add ~/.ssh/id_rsa
- echo -e "Host *\n\tStrictHostKeyChecking no\n\nHost *\n\tPubkeyAcceptedKeyTypes=+ssh-dss\n\n" > ~/.ssh/config
- ssh-add -l
- ssh root@10.40.8.7 "
cd /srv/hpaas/ts_custom &&
git checkout ./package.json &&
git pull &&
npm install --registry https://registry.npmmirror.com &&
rm -rf ./dist &&
npm run build
"
environment:
name: gzb
only:
- gzb
tags:
- gzb-runner
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment