-
Notifications
You must be signed in to change notification settings - Fork 0
101 lines (83 loc) · 2.38 KB
/
doc.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: "Build documentation"
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build_doc:
runs-on: ubuntu-latest
container:
image: texlive/texlive:latest-full
permissions:
contents: read # to fetch code (actions/checkout)
steps:
- name: Install dependencies
run: |
apt-get update
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install -y \
make libmagic1 pandoc
- name: Checkout
uses: actions/checkout@v4
- name: Checkout quokka
uses: actions/checkout@v4
with:
repository: quarkslab/quokka
path: quokka
- name: Checkout QBinDiff
uses: actions/checkout@v4
with:
repository: quarkslab/qbindiff
path: qbindiff
- name: Checkout python-binexport
uses: actions/checkout@v4
with:
repository: quarkslab/python-binexport
path: python-binexport
- name: Checkout idascript
uses: actions/checkout@v4
with:
repository: quarkslab/idascript
path: idascript
- name: Checkout python-bindiff
uses: actions/checkout@v4
with:
repository: quarkslab/python-bindiff
path: python-bindiff
- name: Checkout Awesome-Binary-Similarity
uses: actions/checkout@v4
with:
repository: SystemSecurityStorm/Awesome-Binary-Similarity
path: Awesome-Binary-Similarity
- name: "Set up Python"
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: "Install Python dependencies"
run: |
python -m pip install -r requirements.txt
python -m pip install enum-tools[sphinx]
python -m pip install docutils==0.20.1
- name: "Build Sphinx Doc"
run: make html
- uses: actions/upload-artifact@v3
with:
name: doc-pages
path: ./build/html
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
needs: build_doc
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: doc-pages
path: ./build/html
- name: "Deploy Github Pages"
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: gh-pages
FOLDER: ./build/html/