Skip to content

Record optional Instagram dependency compatibility hold #32

Record optional Instagram dependency compatibility hold

Record optional Instagram dependency compatibility hold #32

Workflow file for this run

name: Build and Deploy MkDocs
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: '3.x' # Python 3.x to match the Docker setup
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs \
mkdocs-material \
mkdocs-exclude \
mkdocs-material-extensions \
mkdocs-minify-plugin \
mkdocs-git-authors-plugin \
mkdocs-git-committers-plugin \
mkdocs-git-revision-date-localized-plugin \
"mkdocs-material[imaging]" \
pymdown-extensions \
neoteroi-mkdocs \
pillow \
cairosvg
- name: Build MkDocs site
run: mkdocs build --verbose
env:
CD: true
- name: Create .nojekyll file
run: touch ./site/.nojekyll
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
force_orphan: true