Remove Docute completely #110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-Upload | |
on: [push] | |
jobs: | |
upload: | |
name: Upload docute-based help to server | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone the repo | |
run: git clone -b master --depth=1 https://github.com/WohlSoft/Moondust-Devkit-Help.git . | |
- name: List all content of the repo | |
run: ls -al | |
- name: Deploy to server | |
uses: Pendect/[email protected] | |
env: | |
DEPLOY_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
with: | |
flags: '-lrvuO --delete --exclude=".*"' | |
options: '' | |
ssh_options: '-q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o HostKeyAlgorithms=+ssh-dss' | |
src: './*' | |
dest: '${{ secrets.SSH_USER }}@${{ secrets.SSH_HOST }}:${{ secrets.EDITOR_HELP_REMOTE }}' |