-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (52 loc) · 1.84 KB
/
Copy pathrelease.yml
File metadata and controls
62 lines (52 loc) · 1.84 KB
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
name: Release
on:
push:
tags: ["v*"]
permissions:
contents: write
jobs:
build-pdf:
name: Build PDF and create release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Python dependencies
run: pip install Pillow scipy numpy
- name: Install Mermaid CLI
run: npm install -g @mermaid-js/mermaid-cli
- name: Install system deps (Chromium for mermaid-cli, LaTeX, pandoc)
run: |
sudo apt-get update
sudo apt-get install -y \
ca-certificates fonts-liberation libasound2t64 libatk-bridge2.0-0 \
libatk1.0-0 libcairo2 libcups2 libdbus-1-3 libexpat1 libgbm1 \
libglib2.0-0t64 libnspr4 libnss3 libpango-1.0-0 libx11-6 libx11-xcb1 \
libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 \
libxi6 libxkbcommon0 libxrandr2 libxrender1 libxss1 libxtst6 \
texlive-luatex \
texlive-latex-recommended \
texlive-latex-extra \
texlive-fonts-recommended \
texlive-fonts-extra \
texlive-science \
pandoc \
fonts-texgyre
- name: Build PDF
run: bash build/pdf/build.sh
- name: Extract version from tag
id: version
run: echo "tag=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
- name: Create GitHub release
env:
GH_TOKEN: ${{ github.token }}
TAG: ${{ steps.version.outputs.tag }}
run: |
cp "book/evenwicht-${TAG}.pdf" "book/evenwicht.pdf"
gh release create "$TAG" \
"book/evenwicht-${TAG}.pdf" \
"book/evenwicht.pdf" \
--title "$TAG" \
--notes "Evenwicht $TAG — PDF built from source."