Compare commits

...

1 Commits

Author SHA1 Message Date
jango-blockchained
9b74a4354b ci: Enhance documentation deployment workflow with debugging and manual trigger
- Add manual workflow dispatch trigger
- Include diagnostic logging steps for mkdocs build process
- Modify artifact upload path to match project structure
- Add verbose output for build configuration and directory contents
2025-02-06 05:43:24 +01:00

View File

@@ -7,6 +7,8 @@ on:
paths: paths:
- 'docs/**' - 'docs/**'
- 'mkdocs.yml' - 'mkdocs.yml'
# Allow manual trigger
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions: permissions:
@@ -23,11 +25,13 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - name: Checkout repository
uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: actions/setup-python@v5 - name: Setup Python
uses: actions/setup-python@v5
with: with:
python-version: '3.x' python-version: '3.x'
cache: 'pip' cache: 'pip'
@@ -40,13 +44,25 @@ jobs:
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -r docs/requirements.txt pip install -r docs/requirements.txt
- name: List mkdocs configuration
run: |
echo "Current directory contents:"
ls -la
echo "MkDocs version:"
mkdocs --version
echo "MkDocs configuration:"
cat mkdocs.yml
- name: Build documentation - name: Build documentation
run: mkdocs build --strict run: |
mkdocs build --strict
echo "Build output contents:"
ls -la site/advanced-homeassistant-mcp
- name: Upload artifact - name: Upload artifact
uses: actions/upload-pages-artifact@v3 uses: actions/upload-pages-artifact@v3
with: with:
path: ./site path: ./site/advanced-homeassistant-mcp
deploy: deploy:
environment: environment: