docs: add github action to push docs (#444)

pull/446/head
Bryce Drennan 4 months ago committed by GitHub
parent 807c976da3
commit 66b17cc315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -116,3 +116,25 @@ jobs:
run: |
imagine fruit --steps 10 --size 496 --seed 1
publish-docs:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: python -m pip install -r requirements-dev.in . --upgrade
- run: mkdocs gh-deploy --force
Loading…
Cancel
Save