Files
claude-engineering-plugin/.github/workflows/deploy-docs.yml
Salman Chishti fbae146ba9 Upgrade GitHub Actions to latest versions (#168)
Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com>
2026-02-11 12:28:08 -06:00

40 lines
796 B
YAML

name: Deploy Documentation to GitHub Pages
on:
push:
branches: [main]
paths:
- 'plugins/compound-engineering/docs/**'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: 'plugins/compound-engineering/docs'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4