Skip to content

Mehr Fertigkeiten

Mehr Fertigkeiten #29

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- main
jobs:
build:
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 MkDocs
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Build the documentation
run: mkdocs build
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force