Skip to content

Improve the project structure and all codes in the subdirectories of … #43

Improve the project structure and all codes in the subdirectories of …

Improve the project structure and all codes in the subdirectories of … #43

Workflow file for this run

name: publish-docs
on:
push:
tags:
- v*
branches:
- main
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v2
- name: Generate markdown files
run: |
# Generate markdown files here
python3 gen_docsite.py
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
# Or use mhausenblas/mkdocs-deploy-gh-pages@nomaterial to build without the mkdocs-material theme
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CONFIG_FILE: mkdocs.yml
EXTRA_PACKAGES: build-base
# GITHUB_DOMAIN: github.myenterprise.com
REQUIREMENTS: docs/requirements.txt