Skip to content

Merge pull request #5 from UKGovernmentBEIS/craig/slack-invite-link #4

Merge pull request #5 from UKGovernmentBEIS/craig/slack-invite-link

Merge pull request #5 from UKGovernmentBEIS/craig/slack-invite-link #4

Workflow file for this run

name: docs
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- name: Set up Python
uses: actions/[email protected]
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
working-directory: ./docs
- run: poetry run mkdocs gh-deploy --force
working-directory: ./docs