-
Notifications
You must be signed in to change notification settings - Fork 46
50 lines (48 loc) · 1.17 KB
/
manual.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
name: Manual
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- stable-*.*
schedule:
# Every day at 3:20 AM UTC
- cron: "20 3 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
manual:
name: compile and upload manual
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install TeX Live . . .
run: |
packages=(
texlive-latex-base
texlive-latex-recommended
texlive-latex-extra
texlive-extra-utils
texlive-fonts-recommended
texlive-fonts-extra
)
sudo apt-get update
sudo apt-get install "${packages[@]}"
- uses: gap-actions/setup-gap@v2
env:
GAP_BOOTSTRAP: minimal
with:
GAP_PKGS_TO_BUILD: ""
- uses: gap-actions/build-pkg-docs@v1
- name: Upload compiled manuals . . .
uses: actions/upload-artifact@v4
with:
name: Digraphs manual
retention-days: 7
path: |
doc/manual.pdf
doc/*.html
doc/*.css
doc/*.js