Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit e3b2eed

Browse files
committed
docs: gh action
1 parent a474ffe commit e3b2eed

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/documentation.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ jobs:
1111
deploy-docs:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-python@v2
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.x
17+
python-version: 3.11
1818
- name: Install MkDocs
19-
run: pip install mkdocs-material
19+
run: pip install mkdocs==1.5.3 mkdocs-material==9.5.10
2020
- name: Build docs
2121
run: mkdocs build
2222
- name: Deploy docs
2323
uses: JamesIves/github-pages-deploy-action@v4
2424
with:
2525
folder: site
26-
token: ${{ secrets.GH_TOKEN }}
27-
git-config-name: ${{ secrets.GH_USERNAME }}
28-
git-config-email: ${{ secrets.GH_EMAIL }}
26+
token: ${{ secrets.GH_BOT_TOKEN }}
27+
git-config-name: ${{ vars.GH_BOT_NAME }}
28+
git-config-email: ${{ vars.GH_BOT_EMAIL }}
2929

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,6 @@ buck-out/
5353
\.buckd/
5454
android/app/libs
5555
android/keystores/debug.keystore
56+
57+
# Built website
58+
site/

0 commit comments

Comments
 (0)