forked from mirrors/Awesome-CV
a944c26b24
[texlive/texlive](https://hub.docker.io/r/texlive/texlive)'s source is available at: https://gitlab.com/islandoftex/images/texlive. Closes #401.
21 lines
327 B
YAML
21 lines
327 B
YAML
name: Compile PDFs
|
|
|
|
on:
|
|
push: {}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: texlive/texlive:latest
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Compile
|
|
run: make
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: examples
|
|
path: examples/*.pdf
|