chore(release): bump version to v1.3.0 #24
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |