Skip to content

Fix #3

Fix #3 #8

Workflow file for this run

name: Live deploy docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Collect documentation
uses: actions/checkout@v4
- name: Install dependencies
run: pip install mkdocs-material mkdocs-privacy
- name: Build the site
run: mkdocs build
- name: Upload naar server via SFTP
uses: appleboy/[email protected]
with:
host: ${{ secrets.SFTP_HOST }}
username: ${{ secrets.SFTP_USER }}
password: ${{ secrets.SFTP_PASSWORD }}
source: "site/*"
target: "/var/www/docs"
strip_components: 1