Skip to content

Update -l flag and add examples #17

Update -l flag and add examples

Update -l flag and add examples #17

Workflow file for this run

name: Deploy Docs
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '.github/workflows/publish_site.yml'
- 'docs/**'
- 'hooks/**'
- 'theme/**'
- 'mkdocs.yml'
- 'requirements.txt'
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
buildAndDeploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python 3.x
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -r requirements.txt
- name: Create Pygment lexer
working-directory: hooks/CommandLexer/
run: python -m pip install .
- name: Build Docs
run: mkdocs build
- name: Configure Pages
uses: actions/configure-pages@v3
- name: Upload Artifact
uses: actions/upload-pages-artifact@v2
with:
path: 'site/'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2