Auto pushes docs (#2580)

This commit is contained in:
Real-MullaC 2024-08-19 20:19:37 +01:00 committed by GitHub
parent 2ea708eeb0
commit 83fe6c5b12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,15 +1,16 @@
name: GitHub Pages Deploy name: GitHub Pages Deploy
on: on:
release: push:
types: [published, prereleased] paths:
- '.github/mkdocs.yml'
- '.github/requirements.txt'
- 'docs/**'
- 'overrides/**'
workflow_dispatch: workflow_dispatch:
permissions:
contents: write
jobs: jobs:
deploy: build-and-deploy:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -22,10 +23,10 @@ jobs:
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: 3.x # Install latest Stable release of Python 3 python-version: 3.x # Install latest Stable release of Python 3
cache: 'pip' # caching pip dependencies cache: 'pip' # Caching pip dependencies
- name: Install Necessary Dependencies using 'pip install -r .github/requirements.txt' - name: Install Necessary Dependencies
run: pip install -r .github/requirements.txt run: pip install -r .github/requirements.txt
- name: Build & Deploy using 'mkdocs' - name: Build & Deploy using mkdocs
run: mkdocs gh-deploy --force -f .github/mkdocs.yml run: mkdocs gh-deploy --force -f .github/mkdocs.yml