LaTeX-based academic and technical documentation for the Feed the Realm project. PDFs are automatically compiled and published as GitHub Releases on every version tag.
Once the LaTeX source is ready, create a version tag to trigger the build-and-release pipeline:
git tag -a v1.0.0 -m "Release version 1.0.0"
git push --tagsThe compiled PDFs will be available at:
https://github.com/FeedTheRealm-org/Documents/releases/tag/v1.0.0
- Create a new folder with the LaTeX source (a
main.texas entrypoint). - Register it in
files.yaml:
# Example
proposal:
name: your_document_name
description: Build the proposal document using LaTeX
entrypoint: ./your-folder- Tag and push to trigger the release pipeline.
Compilation runs inside Docker to avoid requiring a local LaTeX installation.
make image # Build the Docker image with the LaTeX environment
make run # Compile all documents defined in files.yaml
make run-<name> # Compile only the specified document (replace <name> with document key)
make clean # Remove all generated PDF files from the root directory