Skip to content

Commit 9acaba9

Browse files
committed
Update docs
1 parent 1fd4343 commit 9acaba9

File tree

8 files changed

+443
-120
lines changed

8 files changed

+443
-120
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Deploy Docs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
jobs:
14+
deploy-docs:
15+
runs-on: ubuntu-latest
16+
name: Build and Deploy Documentation
17+
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
21+
22+
- name: Setup GitHub Pages
23+
uses: actions/configure-pages@v4
24+
25+
- name: Setup Node.js
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: '20'
29+
30+
- name: Setup Ruby
31+
uses: ruby/setup-ruby@v1
32+
with:
33+
ruby-version: '3.1'
34+
35+
- name: Generate Docs with Chirpy
36+
uses: jsurrea/[email protected]
37+
with:
38+
docs-dir: docs
39+
40+
- name: Upload site artifact
41+
uses: actions/upload-pages-artifact@v3
42+
with:
43+
path: theme/_site
44+
45+
- name: Deploy to GitHub Pages
46+
uses: actions/deploy-pages@v4

docs/.gitignore

Lines changed: 0 additions & 6 deletions
This file was deleted.

docs/404.html

Lines changed: 0 additions & 25 deletions
This file was deleted.

docs/Gemfile

Lines changed: 0 additions & 33 deletions
This file was deleted.

0 commit comments

Comments
 (0)