File tree Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Expand file tree Collapse file tree 1 file changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,22 @@ jobs:
11
11
steps :
12
12
- uses : actions/checkout@v2
13
13
with :
14
- submodules : true # Fetch Hugo themes (true OR recursive)
15
- fetch-depth : 0 # Fetch all history for .GitInfo and .Lastmod
16
-
17
- - name : Setup Hugo
18
- uses : peaceiris/actions-hugo@v2
19
- with :
20
- hugo-version : ' 0.74.3'
21
-
22
- - name : Build
23
- run : hugo --minify && echo -n enzyme.mit.edu > ./public/CNAME
14
+ submodules : true
15
+
16
+ - name : Install dependencies
17
+ run : |
18
+ sudo apt-get update
19
+ sudo apt-get install doxygen
20
+ python3 -m venv env
21
+ source env/bin/activate
22
+ pip install --upgrade pip
23
+ pip install -r requirements.txt
24
+
25
+ - name : Build docs
26
+ run : |
27
+ source env/bin/activate
28
+ make html
29
+ echo -n enzyme.mit.edu > ./build/html/CNAME
24
30
25
31
- name : Deploy
26
32
uses : peaceiris/actions-gh-pages@v3
You can’t perform that action at this time.
0 commit comments