-
Notifications
You must be signed in to change notification settings - Fork 17
49 lines (40 loc) · 1.08 KB
/
docs.yaml
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
46
47
48
49
name: docs
on:
push:
pull_request:
workflow_dispatch:
jobs:
docs:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
# Repository
- name: Checkout the code
uses: actions/checkout@v4
# Environment
- name: Download environment files
run: |
wget https://raw.githubusercontent.com/Auto-Mech/amech-dev/main/pixi.toml
wget https://raw.githubusercontent.com/Auto-Mech/amech-dev/main/pixi.lock
- name: Set up Pixi
uses: prefix-dev/[email protected]
- name: Pip install
run: |
pixi run pip install -e . --no-deps
# Docs
- name: Build docs
run: |
cd docs
pixi run make html
- name: Upload docs
uses: actions/upload-artifact@v4
with:
name: html-docs
path: docs/build/html/
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/dev'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/build/html