Skip to content

Update import.md

Update import.md #109

Workflow file for this run

name: 📖 Documentation
on:
push:
branches:
- master
paths:
- 'CHANGELOG.md'
- 'CONTRIBUTING.md'
- 'docs/**'
- 'mkdocs.yml'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Get source code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Set up NodeJS (for search index prebuilding)
uses: actions/setup-node@v4
with:
node-version: '12'
- name: Cache project dependencies (pip)
uses: actions/cache@v4.0.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/doc.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r requirements/doc.txt
- name: Copy CHANGELOG.md and CONTRIBUTING.md
run: |
cp CHANGELOG.md docs/
cp CONTRIBUTING.md docs/
- name: Deploy to Github Pages
run: |
git config --global user.name "${{ secrets.BOT_NAME }}"
git config --global user.email "${{ secrets.BOT_MAIL }}"
mkdocs gh-deploy --clean --force --verbose