Skip to content

Merge pull request #328 from danielo515/feat/markdown_block #72

Merge pull request #328 from danielo515/feat/markdown_block

Merge pull request #328 from danielo515/feat/markdown_block #72

Workflow file for this run

name: Deploy Mkdocs Site
on:
workflow_dispatch:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
pip install mkdocs
pip install mkdocs-material
- name: Build Mkdocs site
run: ./build-docs.sh
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site