Files
hkuds--cli-anything/.github/workflows/deploy-pages.yml
T
wehub-resource-sync 4904b939ef
Check Codex Skill / test-installer (push) Failing after 1s
Deploy to GitHub Pages / build (push) Failing after 1s
Check Root Skills / validate-root-skills (push) Failing after 1s
Deploy to GitHub Pages / deploy (push) Has been skipped
Publish cli-anything-hub to PyPI / publish (push) Failing after 1s
PR Labeler Tests / test (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:06:50 +08:00

102 lines
2.8 KiB
YAML

name: Deploy to GitHub Pages
on:
push:
branches:
- main
paths:
- '*/agent-harness/**'
- 'registry.json'
- 'public_registry.json'
- 'matrix_registry.json'
- 'cli-hub/**'
- 'cli-hub-matrix/**'
- 'docs/hub/**'
- '.github/workflows/deploy-pages.yml'
- '.github/scripts/update_registry_dates.py'
- '.github/scripts/generate_meta_skill.py'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Generate registry dates
run: python3 .github/scripts/update_registry_dates.py
- name: Generate meta-skill
run: python3 .github/scripts/generate_meta_skill.py
- name: Install AWS CLI
run: pip install awscli
- name: Upload SKILL.md to DO Spaces
env:
AWS_ACCESS_KEY_ID: ${{ secrets.DO_SPACES_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.DO_SPACES_SECRET }}
run: |
aws s3 cp cli-hub-skill/SKILL.md \
s3://${{ secrets.DO_SPACES_BUCKET }}/SKILL.md \
--endpoint-url ${{ secrets.DO_SPACES_ENDPOINT }} \
--acl public-read \
--content-type text/markdown
- name: Copy registries to hub for cli-hub access
run: |
cp registry.json docs/hub/registry.json
cp public_registry.json docs/hub/public_registry.json
- name: Copy matrix_registry.json to hub for cli-hub access
run: cp matrix_registry.json docs/hub/matrix_registry.json
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./docs/hub
destination: ./docs/_site
# Copied after the Jekyll build so SKILL.md front matter is served
# verbatim instead of being converted to HTML. Published at
# https://hkuds.github.io/CLI-Anything/matrix/<name>/{SKILL.md,references/,scripts/}
# (consumed by cli_hub.matrix_skill's published-URL fallback).
- name: Copy matrix skill content into site
run: |
sudo mkdir -p docs/_site/matrix
sudo rsync -a --exclude='__pycache__' --exclude='*.pyc' --exclude='*.pyo' \
cli-hub-matrix/ docs/_site/matrix/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/_site'
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4