feat: add registry.json to Pages artifact and enable manual workflow dispatch

- Copy registry.json into Pages artifact so it's accessible at /registry.json
- Add workflow_dispatch trigger for manual deploys
This commit is contained in:
John Doe
2026-05-06 20:57:45 -04:00
parent be5065c806
commit fce894f8bd
+4
View File
@@ -9,6 +9,7 @@ on:
- 'scripts/build-registry.js'
- 'scripts/generate-docs.js'
- 'docs/**'
workflow_dispatch:
permissions:
contents: read
@@ -41,6 +42,9 @@ jobs:
- name: Build VitePress site
run: cd docs && npm run docs:build
- name: Include registry.json in Pages artifact
run: cp registry.json docs/.vitepress/dist/registry.json
- name: Setup Pages
uses: actions/configure-pages@v5