Skip to content

Update new-page-template.md #17

Update new-page-template.md

Update new-page-template.md #17

name: publish (main & releases)
on:
push:
branches:
- main
- 'releases/**'
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v6
with:
python-version: 3.12
cache: 'pip'
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Setup Docs Deploy
run: |
git config --global user.name "Docs Deploy"
git config --global user.email "docs.deploy@example.co.uk"
- name: Build Docs Website
run: mkdocs gh-deploy