Skip to content

Commit 5d87132

Browse files
committedOct 10, 2024
Add docusaurus site
1 parent e236e4b commit 5d87132

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+15869
-525
lines changed
 

‎.github/workflows/publish-docs.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: Publish Docs
2+
3+
on:
4+
release:
5+
types: [published]
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: false
16+
17+
jobs:
18+
deploy:
19+
name: Publish
20+
environment:
21+
name: github-pages
22+
url: ${{ steps.deployment.outputs.page_url }}
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/checkout@v4
27+
- name: Setup Pages
28+
uses: actions/configure-pages@v5
29+
- name: Setup Node.js
30+
uses: actions/setup-node@v4
31+
with:
32+
node-version: "20.x"
33+
cache: "npm"
34+
- name: Switch to docs directory
35+
run: cd docs
36+
- name: Install Node.js dependencies
37+
run: npm ci
38+
- name: Build docs
39+
run: npm run build
40+
- name: Upload artifact
41+
uses: actions/upload-pages-artifact@v3
42+
with:
43+
path: "./build"
44+
- name: Deploy to GitHub Pages
45+
id: deployment
46+
uses: actions/deploy-pages@v4

‎docs/RLOG-SPEC.md ‎RLOG-SPEC.md

File renamed without changes.

0 commit comments

Comments
 (0)
Please sign in to comment.