Files
httprunner/.github/workflows/deploy-mkdocs.yml

19 lines
374 B
YAML

name: Deploy docs to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy docs to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs-material # including mkdocs
- run: mkdocs gh-deploy