Skip to content

Commit ca67ef8

Browse files
committed
feat: update version and add documentation for GitHub Pages deployment
- Bump version from 0.0.9 to 0.1.7 in package.json. - Introduce a new GitHub Actions workflow for deploying documentation to GitHub Pages. - Add essential files for documentation including index.html, robots.txt, sitemap.xml, and site assets. - Implement AI chat and solution features in the application, enhancing user interaction and problem-solving capabilities. These changes improve the deployment process and enhance the overall user experience with new AI functionalities.
1 parent 7d7c22b commit ca67ef8

File tree

20 files changed

+3607
-232
lines changed

20 files changed

+3607
-232
lines changed

.github/workflows/deploy-pages.yml

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

docs/.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)