Skip to content

update ci.yml

update ci.yml #36

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: pip install mkdocs mkdocs-material mike git
- name: Deploy documentation
run: |
git config --global user.name "ligenxxxx"
git config --global user.email "[email protected]"
mike deploy dev