diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml new file mode 100644 index 0000000..fb22646 --- /dev/null +++ b/.github/workflows/cd.yml @@ -0,0 +1,20 @@ +name: Continuous deployment + +on: + push: + branches: + - master + +jobs: + build-pdf: + name: Build PDF + runs-on: ubuntu-latest + container: + image: thomasweise/docker-texlive-full:latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Build document + run: lualatex --output-format=pdf BertrandBoyer.tex