linutil/.github/workflows/github-pages.yml

33 lines
804 B
YAML
Raw Normal View History

2024-07-25 22:57:54 +01:00
name: GitHub Pages Deploy
2024-09-12 20:57:05 +01:00
2024-07-25 22:57:54 +01:00
on:
2024-09-12 20:57:05 +01:00
push:
paths:
- 'mkdocs.yml'
- 'docs/**'
- 'overrides/**'
- 'CONTRIBUTING.md'
workflow_dispatch:
2024-07-25 22:57:54 +01:00
jobs:
2024-09-12 20:57:05 +01:00
build-and-deploy:
2024-07-25 22:57:54 +01:00
runs-on: ubuntu-latest
2024-09-12 20:57:05 +01:00
2024-07-25 22:57:54 +01:00
steps:
2024-09-12 20:57:05 +01:00
- name: Checkout Repository
uses: actions/checkout@v4
2024-07-25 22:57:54 +01:00
with:
2024-09-12 20:57:05 +01:00
fetch-depth: '0' # Fetch all commit history for all branches as well as tags.
- name: Setup Python
uses: actions/setup-python@v5
2024-07-25 22:57:54 +01:00
with:
2024-09-12 20:57:05 +01:00
python-version: 3.x # Install latest Stable release of Python 3
cache: 'pip' # Caching pip dependencies
- name: Install Necessary Dependencies
run: pip install -r .github/requirements.txt
- name: Build & Deploy using mkdocs
run: mkdocs gh-deploy --force -f .github/mkdocs.yml