Skip to content

Update CV.

Update CV. #8

name: Build and deploy MkDocs documentation
on:
workflow_dispatch:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# Fetch the entire Git history for
# creation and modification date.
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install MkDocs and dependencies
run: |
pip install -r requirements.txt
- name: Deploy to GitHub Pages
run: |
mkdocs gh-deploy --force --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}