Skip to content

Merge pull request #1524 from interactions-py/unstable #45

Merge pull request #1524 from interactions-py/unstable

Merge pull request #1524 from interactions-py/unstable #45

Workflow file for this run

name: docs-builder
on:
push:
branches:
- stable
jobs:
deploy:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- uses: actions/cache@v3
with:
key: ${{ github.ref }}
path: .cache
- run: pip install -e .[docs]
- run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
- run: mkdocs gh-deploy
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
DEPLOY: True