Skip to content

Commit 889a2f1

Browse files
committed
Add initial GitHub Pages support with site generation and deployment
- Added documentation pages for Architecture, Runtime, CLI/TUI, Events, and Guides. - Introduced a GitHub Actions workflow (`pages.yml`) for automated site deployment. - Enabled support for `.nojekyll` to bypass Jekyll processing. - Included component overview diagram and additional assets for enhanced documentation.
1 parent 5b42fec commit 889a2f1

File tree

16 files changed

+11591
-0
lines changed

16 files changed

+11591
-0
lines changed

.github/workflows/pages.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Pages
2+
3+
on:
4+
push:
5+
branches: [main]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: pages
15+
cancel-in-progress: true
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Ensure site exists
23+
run: test -f site/index.html
24+
- name: Upload Pages artifact
25+
uses: actions/upload-pages-artifact@v3
26+
with:
27+
path: site
28+
29+
deploy:
30+
needs: build
31+
runs-on: ubuntu-latest
32+
environment:
33+
name: github-pages
34+
url: ${{ steps.deployment.outputs.page_url }}
35+
steps:
36+
- name: Deploy to GitHub Pages
37+
id: deployment
38+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)