Skip to content

Merge pull request #59 from SpokaneTech/add-celery #3

Merge pull request #59 from SpokaneTech/add-celery

Merge pull request #59 from SpokaneTech/add-celery #3

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
paths:
- '/docs/**'
- 'mkdocs.yml'
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
- name: Install image processing tools
run: sudo apt-get install -y libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev
- run: pip install -r requirements/dev.txt
- run: mkdocs gh-deploy --force