Skip to content

fix: detailed install steps with copyable MCP config in site.json #2

fix: detailed install steps with copyable MCP config in site.json

fix: detailed install steps with copyable MCP config in site.json #2

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches: [main]
paths:
- "skills/**"
- "rules/**"
- "mcp-tools.json"
- "site.json"
- ".cursor-plugin/plugin.json"
- "assets/**"
workflow_dispatch:
permissions:
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6
with:
repository: TMHSDigital/Developer-Tools-Directory
path: _template
sparse-checkout: site-template
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r _template/site-template/requirements.txt
- name: Build site
run: python _template/site-template/build_site.py --repo-root . --out docs
- name: Configure Pages
uses: actions/configure-pages@v6
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5