Skip to content

theme just with name, no other config #10

theme just with name, no other config

theme just with name, no other config #10

Workflow file for this run

name: mkdocs
on:
workflow_dispatch:
push:
branches:
# - ignore
- 810-feature-static-site-generator-for-project-documentation
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.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Print current directory
run: pwd
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force
working-directory: ./mkdocs