From 0986a8193f6bcc2c8c84f8f98fffea019d2f7fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Alvarez?= Date: Thu, 4 Feb 2021 19:35:00 -0300 Subject: [PATCH] Add GitLab CI This will build the PDFs and publish them as artifacts on the build job. --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a45b659 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +# SPDX-FileCopyrightText: 2021 Nicolás Alvarez +# SPDX-License-Identifier: CC0-1.0 + +build: + image: aergus/latex + stage: build + script: + - make + artifacts: + paths: + - "*.pdf" -- GitLab