diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e7e6a297..30a2c3eb 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -51,3 +51,5 @@ jobs: uses: JamesIves/github-pages-deploy-action@v4 with: folder: html + ssh-key: ${{ secrets.DEPLOY_KEY }} + repository-name: dstansby/napari-matplotlib-docs diff --git a/docs/conf.py b/docs/conf.py index 060f14df..4351e610 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -92,3 +92,17 @@ # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". # html_static_path = ['_static'] + +html_theme_options = { + "icon_links": [ + { + "name": "GitHub", + "url": "https://github.com/matplotlib/napari-matplotlib", + "icon": "fa-brands fa-square-github", + "type": "fontawesome", + } + ], + "logo": { + "text": "napari-matplotlib", + }, +}