-
Notifications
You must be signed in to change notification settings - Fork 2
58 lines (49 loc) · 1.62 KB
/
deploy_doc.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
50
51
52
53
54
55
56
57
58
name: Build Documentation
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches: [master]
pull_request:
jobs:
build_deploy:
name: Build documentation
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: Install Dependencies on Ubuntu
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get update
sudo apt-get install lftp python3 make latexmk \
texlive-full xindy texlive-latex-recommended texlive-xetex texlive-lang-cjk texlive-latex-extra texlive-fonts-recommended
sudo python3 -m pip install --upgrade pip
sudo pip3 install -r requirements.txt
- name: Build Documentation
run: |
make all
make latexpdf
cp build/latex/*.pdf build/html/
- name: Deploy Documentation
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/master' }}
env:
FTPUSER: ${{ secrets.FTPUSER }}
FTPPWD: ${{ secrets.FTPPWD }}
FTPSERVER: ${{ secrets.FTPSERVER }}
run: |
bash .github/ftp_deploy.sh $FTPUSER $FTPPWD $FTPSERVER build/html nuclei_tools
echo "Click https://doc.nucleisys.com/nuclei_tools to view the latest deployment!"
- name: Upload Documentation
uses: actions/upload-artifact@v3
with:
# Artifact name
name: nuclei_tools_doc
# A file, directory or wildcard pattern that describes what to upload
path: build/html