-
Notifications
You must be signed in to change notification settings - Fork 1
123 lines (102 loc) · 3.38 KB
/
generate_pdf.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
on: [push]
jobs:
create_draft_release:
runs-on: ubuntu-latest
outputs:
id: ${{ steps.create_draft_release.outputs.id }}
steps:
- name: Create draft release on tags
id: create_draft_release
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
draft: true
prerelease: false
latex-job:
needs: create_draft_release
runs-on: ubuntu-latest
name: Compile And Upload PDF
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set git user
run: |
git config --global user.name github-actions
git config --global user.email [email protected]
- name: Define env
run: |
echo "GITHUB_TAG=$(git describe --always --tags)" >> $GITHUB_ENV
echo "BUILD_DATE=$(date +'%Y_%m_%d')" >> $GITHUB_ENV
# - uses: actions/cache@v2
# name: Tectonic Cache
# with:
# path: ~/.cache/Tectonic
# key: ${{ runner.os }}-tectonic-${{ hashFiles('**/*.tex') }}
# restore-keys: |
# ${{ runner.os }}-tectonic-
#
# - uses: wtfjoke/setup-tectonic@v2
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# - name: Prepare env
# run: |
# sudo apt update
# sudo apt install fonts-opendyslexic fonts-texgyre texlive-bibtex-extra biber
# sudo rm -rf /usr/share/fonts/woff/opendyslexic
# mkdir assets
# - name: Run Tectonic
# run: |
# tectonic hm.tex
# mv hm.pdf assets/hm-tg.pdf
- name: compile.sh
uses: dante-ev/latex-action@latest
with:
extra_system_packages: fonts-opendyslexic fonts-texgyre texlive-bibtex-extra biber
entrypoint: ./compile.sh
- name: rename tg
run: |
mkdir assets
mv hm.pdf assets/hm-tg.pdf
- name: Upload PDF
if: ${{ success() }}
uses: actions/upload-artifact@v2
with:
path: assets/hm-tg.pdf
name: hm-tg-${{ env.BUILD_DATE }}-${{ env.GITHUB_TAG }}.pdf
if-no-files-found: error
- name: Remove TeX Gyre font customizations, falls back to OpenDyslxic
run: sed -i.bak '11,13d' hm.tex
# - name: Run Tectonic
# run: |
# tectonic hm.tex
# mv hm.pdf assets/hm-od.pd
- name: compile.sh again
uses: dante-ev/latex-action@latest
with:
entrypoint: ./compile.sh
- name: rename od
run: mv hm.pdf assets/hm-od.pdf
- name: Upload release assets
if: ${{ success() && startsWith(github.ref, 'refs/tags/') }}
id: upload-release-assets
uses: dwenegar/upload-release-assets@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_id: ${{ needs.create_draft_release.outputs.id }}
assets_path: assets/
- name: Prepare for deployment
run: |
mkdir public
mv hm-images/ images/ chapter*.html index.html *.css public/
- name: Deploy release
if: ${{ success() && startsWith(github.ref, 'refs/tags/') }}
uses: peaceiris/actions-gh-pages@v3
with:
personal_token: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_branch: master
publish_dir: ./public