From d7e103b68777d968b6a3152ed29254f7121a995f Mon Sep 17 00:00:00 2001 From: Alexander Couzens <lynxis@fe80.eu> Date: Sun, 2 Mar 2025 20:58:41 +0100 Subject: [PATCH] gitlab-ci: install asciidoc & asciidoctor --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fb95ebc..bea2794 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ image: python:3.12-alpine pages: stage: deploy script: - - apk add --update --no-cache make + - apk add --update --no-cache make asciidoc asciidoctor - pip install -r requirements.txt ## ## Use a custom theme. @@ -20,7 +20,7 @@ pages: test: stage: test script: - - apk update && apk add make + - apk add --update --no-cache make asciidoc asciidoctor - pip install -r requirements.txt - make publish rules: -- GitLab