de4c94ff0b
I'm ambivalent about Circle vs. Actions, but the former is failing missing a key in order to clone the repo, and I think I lack access to fix that. Since it's only a simple workflow, seemed easiest to recreate in Actions - and as that passes (as of d62f1625be1f7d50439e3f0d5cbfdefcc2212bca) it seems to make more sense to use that for a nice green status than red from Circle.
22 lines
340 B
YAML
22 lines
340 B
YAML
name: Compile PDFs
|
|
|
|
on:
|
|
push: {}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: thomasweise/texlive
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Compile
|
|
run: make
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: examples
|
|
path: examples/*.pdf
|