From a7df343877e524102cb554922e000a4f00e88e81 Mon Sep 17 00:00:00 2001 From: "Bertrand B." Date: Mon, 9 Oct 2023 17:43:43 +0200 Subject: [PATCH] First version of CD. --- .github/workflows/cd.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/cd.yml 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