forked from gptme/gptme
-
Notifications
You must be signed in to change notification settings - Fork 0
82 lines (67 loc) · 1.96 KB
/
docs.yml
File metadata and controls
82 lines (67 loc) · 1.96 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Docs
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install poetry
run: |
pipx install poetry
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
cache: 'poetry'
- name: Install apt/dpkg dependencies
run: |
sudo apt-get install -y cloc hyperfine
# pandoc in ubuntu repos is from 2018...
wget https://github.com/jgm/pandoc/releases/download/3.3/pandoc-3.3-1-amd64.deb
sudo dpkg -i pandoc-3.3-1-amd64.deb
- name: Write dummy gptme config
run: |
mkdir -p ~/.config/gptme
echo -e '[prompt]\nabout_user = "testing"\nresponse_preference = "just testing"\n\n[env]\nOPENAI_API_KEY="sk-dummy-key"' > ~/.config/gptme/config.toml
- name: Install dependencies
run: |
poetry install -E browser -E server
- name: Build docs
run: make docs
- name: Build site
run: make site
- name: Upload artifact
uses: actions/upload-artifact@v6
with:
name: site-dist
path: ./site/dist
deploy:
name: deploy
runs-on: ubuntu-latest
needs: [build]
if: github.ref == 'refs/heads/master'
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Download artifact
uses: actions/download-artifact@v7
with:
name: site-dist
path: ./site/dist
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'
publish_dir: ./site/dist
publish_branch: gh-pages