Skip to content

Change logo to png blur #17

Change logo to png blur

Change logo to png blur #17

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
- 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