Day 196/200 写脚本发布项目到远程服务器

(一)需求

每次是打好包,手动发布。

发的多了,就想着能不能写脚本,实现半自动发布项目。

(二)思路

1、需要提前做好免密登录

免密登录可查看
https://segmentfault.com/a/1190000041426552

2、JS中写Shell脚本

  • 安装ShellJS
    npm install [-g] shelljs

  • 项目打包

  • 上传打包好的文件

(三)实现代码

var shell = require('shelljs')
shell.echo('start build')

if (shell.exec('npm run test').code !== 0) { // 执行npm run build 命令
  shell.echo('Error: Git commit failed')
  shell.exit(1)
}
shell.echo('build end')

shell.echo('upload start')
// 将项目上传到服务器对应的目录下
shell.exec('scp dist/index.html root@IP:/目录/ ')
shell.exec('scp -r dist/js root@IP:/目录/ ')
shell.exec('scp -r dist/static root@IP:/目录/')

shell.echo('deploy end')
shell.exit(1)

参考链接

ShellJS GitHub项目

https://github.com/shelljs/shelljs

上一篇:exec函数族


下一篇:idou老师教你学Istio 14:如何用K8S对Istio Service进行流量健康检查