Skip to content

Merge pull request #114 from Andre601/dependabot/pip/mkdocs-material-… #131

Merge pull request #114 from Andre601/dependabot/pip/mkdocs-material-…

Merge pull request #114 from Andre601/dependabot/pip/mkdocs-material-… #131

Workflow file for this run

name: Deploy Site
on:
push:
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'theme/**'
- 'requirements.txt'
- '.github/workflows/deploy.yml'
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.x
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: 'python -m pip install -r requirements.txt'
- name: Deploy Files
run: 'mkdocs gh-deploy --force'