Skip to content

Update AutoRover-H3 user manual #43

Update AutoRover-H3 user manual

Update AutoRover-H3 user manual #43

Workflow file for this run

name: Continuous Deploy #action名称
on: #在推送的时候运行此action
push:
branches: [main]
jobs:
deploy_job:
runs-on: ubuntu-latest #运行环境
name: build
steps:
# check out the repository
- name: Checkout
uses: actions/checkout@v2
- name: deploy file to server
uses: wlixcc/[email protected]
with:
username: '${{ secrets.USER_NAME }}' #ssh user name
server: '${{ secrets.SERVER_IP }}'
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
local_path: './generated/*'
remote_path: '/www/wwwroot/wiki.blicube.com/grtk'