File tree 1 file changed +16
-16
lines changed
1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change 1
- name : Publish documentation
1
+ name : Publish Documentation
2
2
3
3
on :
4
4
push :
7
7
8
8
jobs :
9
9
build :
10
-
11
10
runs-on : ubuntu-latest
12
- strategy :
13
- matrix :
14
- python-version : [3.12]
15
11
16
12
steps :
17
- - name : Install GCC and Git
18
- run : |
19
- sudo apt-get update
20
- sudo apt-get install -y build-essential git
21
- - uses : actions/checkout@v4
22
- - uses : actions/setup-python@v5
13
+ - name : Checkout code
14
+ uses : actions/checkout@v2
15
+
16
+ - name : Set up Python
17
+ uses : actions/setup-python@v2
23
18
with :
24
- python-version : ${{ matrix.python-version }}
19
+ python-version : ' 3.13'
20
+
25
21
- name : Install build essentials
26
- run : sudo apt-get install -y build-essential
22
+ run : apt-get update && apt-get install -y build-essential
23
+
24
+ - name : Install dependencies
25
+ run : |
26
+ python -m pip install --upgrade pip
27
+ pip install -r requirements.txt
27
28
- name : Install dependencies
28
29
run : |
29
- python3 -m pip install --upgrade pip aurora-ssg
30
- python3 -m pip install --upgrade pip pygments bs4 lxml
31
- pip3 install -e .
30
+ python3 -m pip install --upgrade pip
31
+ pip install pygments bs4 lxml git+https://github.com/capjamesg/aurora
32
32
cd docs
33
33
- name : Build main site
34
34
env :
You can’t perform that action at this time.
0 commit comments