From 22aafb60da4136a812d879379ebc579665305e8a Mon Sep 17 00:00:00 2001 From: Chessmaster <ccc@timo-rath.de> Date: Sat, 7 Dec 2019 19:50:04 +0100 Subject: [PATCH] Add CI pipeline to build guide automatically --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..57457f7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +stages: [ build ] + +job_build: + stage: build + image: ubuntu:latest + script: + - apt update + - apt install -y --no-install-recommends asciidoctor + - gem install asciidoctor-pdf --pre + - asciidoctor-pdf guide.adoc + artifacts: + paths: + - "guide.pdf" + expire_in: 12 month \ No newline at end of file -- GitLab