Skip to content

feat: add environment configuration files and update Docker setup #15

feat: add environment configuration files and update Docker setup

feat: add environment configuration files and update Docker setup #15

Workflow file for this run

name: Docs - README PDF
on:
push:
branches: [ "main", "develop" ]
paths:
- readme.md
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Pandoc
run: sudo apt-get update && sudo apt-get install -y pandoc
- name: Install Tectonic
run: |
curl -fsSL https://drop-sh.fullyjustified.net | sh
sudo mv tectonic /usr/local/bin/tectonic
- name: Generate README PDF
run: pandoc readme_pdf.md -o library.pdf --pdf-engine=tectonic -V mainfont="DejaVu Sans" -V fontsize=11pt
- name: Upload README PDF
uses: actions/upload-artifact@v4
with:
name: library-readme-pdf
path: library.pdf