-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (37 loc) · 991 Bytes
/
docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Publish docs
on:
push:
branches:
- main
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install package and dependencies
run: |
python3 -m pip install mkdocs
python3 -m pip install git+https://github.com/TEParsons/mkdocs-landing
- name: Build docs
run: |
mkdocs build
cd gallery/catppuccin
mkdocs build
- name: Commit
run: |
git add --all
git config --global user.email "[email protected]"
git config --global user.name "Todd Parsons"
git commit --all -m "sys: Build documentation"
- name: Push
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true