-
Notifications
You must be signed in to change notification settings - Fork 3
91 lines (80 loc) · 2.52 KB
/
deploy_docs.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
name: deploy
on:
push:
branches:
- master
- develop
- ghactions
- '!gh-pages'
tags: ['*']
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v4.x
- name: Checkout
uses: actions/checkout@v4
with:
path: main
- name: Checkout gh-pages
uses: actions/checkout@v4
with:
ref: gh-pages
path: gh-pages
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Prepare LaTeX env
run: |
sudo apt update
sudo apt install \
texlive-latex-recommended texlive-latex-extra \
texlive-lang-japanese texlive-fonts-recommended texlive-fonts-extra latexmk
kanji-config-updmap-sys ipaex
- name: Install python packages
run: |
python -m pip install --upgrade pip
pip install sphinx sphinxcontrib-spelling
- name: Build
run: |
cd ${GITHUB_WORKSPACE}/main/
cmake -E make_directory build
cd build
cmake -DDocument=ON ../
make doc
- name: Deploy Configuration
run: |
mkdir ~/.ssh
ssh-keyscan -t rsa github.com >> ~/.ssh/known_hosts
echo "${{ secrets.GH_ACTIONS_DEPLOY_KEY }}" > ~/.ssh/id_rsa
chmod 400 ~/.ssh/id_rsa
- name: Push
env:
GIT_USER: "DSQSS Developers"
GIT_EMAIL: "dsqss-dev@issp.u-tokyo.ac.jp"
TARGET_NAME: ${{ env.GITHUB_REF_SLUG }}
run: |
cd ${GITHUB_WORKSPACE}
is_tag=NO
test "_$(echo ${GITHUB_REF:-'//'} | cut -d/ -f2)" = "_tags" && is_tag=YES
for lang in jp en; do
rm -rf "gh-pages/manual/${TARGET_NAME}/${lang}"
mkdir -p "gh-pages/manual/${TARGET_NAME}"
cp -r "main/build/doc/${lang}/html" "gh-pages/manual/${TARGET_NAME}/${lang}"
if [ $is_tag = "YES" ]; then
cp "main/build/doc/${lang}/pdf/DSQSS.pdf" "gh-pages/manual/${TARGET_NAME}/${lang}/DSQSS.pdf"
fi
done
cd gh-pages
git config --local user.name "${GIT_USER}"
git config --local user.email "${GIT_EMAIL}"
git remote set-url origin git@github.com:${GITHUB_REPOSITORY}.git
git add manual
if git commit -m "Deploy docs to ${TARGET_NAME} by GitHub Actions triggered by ${GITHUB_SHA}"
then
git push origin gh-pages
else
echo "Nothing to deploy"
fi