Skip to content

Merge pull request #108 from faissaloux/pre-commit-ci-update-config #86

Merge pull request #108 from faissaloux/pre-commit-ci-update-config

Merge pull request #108 from faissaloux/pre-commit-ci-update-config #86

Workflow file for this run

name: Build and Deploy Docs
on:
push:
branches:
- '*.x'
jobs:
docs-deploy:
name: Deploy docs
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Get latest code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: make install_docs
- name: Build docs
run: make build_docs
- name: Setup Docs Deploy
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Build Docs
run: |
make deploy_docs
make push_docs