updating docs

This commit is contained in:
João Moura
2024-02-03 22:43:09 -08:00
parent 6042d9a7d8
commit 5628bcca78
76 changed files with 2064 additions and 711 deletions

View File

@@ -1,7 +1,7 @@
name: Deploy MkDocs
on:
workflow_dispatch:
workflow_dispatch:
push:
branches:
- main
@@ -22,6 +22,18 @@ jobs:
with:
python-version: '3.10'
- name: Calculate requirements hash
id: req-hash
run: echo "::set-output name=hash::$(sha256sum requirements-doc.txt | awk '{print $1}')"
- name: Setup cache
uses: actions/cache@v3
with:
key: mkdocs-material-${{ steps.req-hash.outputs.hash }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install Requirements
run: |
sudo apt-get update &&