Skip to content

Merge pull request #25 from xiashuyuan/main #39

Merge pull request #25 from xiashuyuan/main

Merge pull request #25 from xiashuyuan/main #39

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
# 步骤执行指令
run: yarn
- 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: './dist/*'
remote: /usr/local/nginx/html/algorithm