Skip to content

add dist/ to gitignore (#2) #2

add dist/ to gitignore (#2)

add dist/ to gitignore (#2) #2

Workflow file for this run

---
name: Deploy Mkdocs Documentation to GitHub Pages
# yamllint disable
on:
push:
branches:
- master
# yamllint enable
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set Up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Dependencies
run: |
pip install mkdocs mkdocs-macros-plugin
- name: Build and Deploy
run: |
mkdocs gh-deploy --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}