Skip to content

Merge pull request #54 from virtualguard101/dev #15

Merge pull request #54 from virtualguard101/dev

Merge pull request #54 from virtualguard101/dev #15

Workflow file for this run

name: "GitHub Pages"
on:
push:
branches:
- main
permissions:
contents: write
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: ".python-version"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: uv sync
- 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: Deploy to GitHub Pages
run: uv run mkdocs gh-deploy --force