Skip to content

chore(release): bump version to v1.3.0 #24

chore(release): bump version to v1.3.0

chore(release): bump version to v1.3.0 #24

Workflow file for this run

name: Docs - README PDF
on:
push:
branches: [ "main", "develop" ]
paths:
- readme_pdf.md
tags:
- 'v*'
jobs:
docs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- 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 monofont="DejaVu Sans Mono" \
-V fontsize=11pt \
-V geometry:margin=1.5cm \
-V linestretch=1.05
- name: Upload README PDF
uses: actions/upload-artifact@v7
with:
name: library-readme-pdf
path: library.pdf
retention-days: 30