https://github.com/sentient-codebot/render-tex
https://github.com/sentient-codebot/render-tex
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sentient-codebot/render-tex
- Owner: sentient-codebot
- Created: 2023-01-02T11:20:54.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-02T12:25:57.000Z (about 3 years ago)
- Last Synced: 2025-02-07T01:32:04.545Z (about 1 year ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# render-tex
## Example
```yaml
name: Render LaTeX document
on: [push]
jobs:
render_latex:
runs-on: ubuntu-latex
name: render
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Render
uses: actions/render-tex
with:
run: |
make
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: ./*.pdf
```