-
Notifications
You must be signed in to change notification settings - Fork 327
44 lines (42 loc) · 1.41 KB
/
build-stable-documentation.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
name: Build stable documentation
on: pull_request
jobs:
# Build job
build_html:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python requirements
run: pip3 install -r requirements.txt --break-system-packages
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build with Jekyll
run: bundle exec jekyll build --config _config.yml,_config_exclude_archive.yml
build_pdf:
runs-on: ubuntu-24.04
container:
image: docker://pandoc/extra:3.1.1.0
options: --entrypoint=sh
defaults:
run:
working-directory: single-file-document
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
run: |
PYTHONUNBUFFERED=1
apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
python3 -m ensurepip
- name: Install Python requirements
run: pip3 install -r requirements.txt
- name: Concatenate files
run: python3 concatenate_to_single_file.py