-
Notifications
You must be signed in to change notification settings - Fork 41
57 lines (55 loc) · 1.59 KB
/
release.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
name: Release CI
on:
push:
tags:
- 'v*.*.*'
jobs:
build-and-deploy:
name: Build and deploy release assets
runs-on: ubuntu-latest
container: fedora:latest
steps:
- name: Installing core packages
run: |
sudo dnf -y install git-core
- name: Fetching sources from repository
uses: actions/checkout@v3
- name: Installing build dependencies
run: |
sudo dnf -y install \
dejavu-sans-fonts \
dejavu-sans-mono-fonts \
dejavu-serif-fonts \
latexmk \
make \
python3-sphinx \
texlive-babel-russian \
texlive-capt-of \
texlive-cmap \
texlive-cmcyr \
texlive-collection-fontsrecommended \
texlive-collection-langcyrillic \
texlive-cyrillic-bin \
texlive-cyrillic-bin-bin \
texlive-fancyhdr \
texlive-fncychap \
texlive-framed \
texlive-hyphen-russian \
texlive-metafont-bin \
texlive-needspace \
texlive-parskip \
texlive-polyglossia \
texlive-tabulary \
texlive-titlesec \
texlive-titling \
texlive-upquote \
texlive-wrapfig \
texlive-xetex \
texlive-xindy
- name: Building PDF using Sphinx-Doc
run: |
make latexpdf
- name: Uploading built PDF artifact to releases
uses: softprops/action-gh-release@v1
with:
files: build/latex/fedora-faq-ru.pdf