Skip to content

Merge pull request #50 from paiDaXing-web/mxm/feature/artical-6 #100

Merge pull request #50 from paiDaXing-web/mxm/feature/artical-6

Merge pull request #50 from paiDaXing-web/mxm/feature/artical-6 #100

Workflow file for this run

name: Build app and deploy to Tencent
on:
#监听push操作
push:
branches:
# mian分支,你也可以改成其他分支
- main
jobs:
# 任务ID
build:
# 运行环境
runs-on: ubuntu-latest
# 步骤
steps:
# 使用别人的action
- uses: actions/checkout@v2
# 步骤名称
- name: yarn&build
# 步骤执行指令
run: sh deploy.sh
#- name: yarn build
#run: yarn build
# 命名这个任务为发布Deploy
- name: Deploy
# 因为构建之后,需要把代码上传到服务器上,所以需要连接到ssh,并且做一个拷贝操作
uses: cross-the-world/scp-pipeline@master
env:
WELCOME: "ssh scp ssh pipelines"
LASTSSH: "Doing something after copying"
with:
host: ${{ secrets.USER_HOST }}
user: ${{ secrets.USER_NAME }}
pass: ${{ secrets.USER_PASS }}
connect_timeout: 10s
local: "./vuepress/.vuepress/dist/*"
remote: /usr/local/nginx/html/you-dont-know-ts