Skip to content

Commit c3ed9ba

Browse files
committed
feat: Create QuickView documentation site with new landing page, assets, i18n, and GitHub Pages deployment, replacing an old open graph image.
1 parent 0039f43 commit c3ed9ba

File tree

14 files changed

+1169
-0
lines changed

14 files changed

+1169
-0
lines changed

.github/workflows/deploy-site.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Deploy Website
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- 'docs/**'
9+
10+
permissions:
11+
contents: write
12+
13+
jobs:
14+
deploy:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Deploy to gh-pages
21+
uses: peaceiris/actions-gh-pages@v3
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
publish_dir: ./docs
25+
publish_branch: gh-pages
26+
keep_files: true
27+
user_name: 'github-actions[bot]'
28+
user_email: 'github-actions[bot]@users.noreply.github.com'
29+
commit_message: 'Update website content'
File renamed without changes.

0 commit comments

Comments
 (0)