summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2021-11-03 09:55:05 +0100
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2021-11-03 09:55:05 +0100
commit6fa2c546fe2451b7b7094e05d105937143e033ea (patch)
treea005b4880a7e4fa0b378f2fc3ddc0b2320ea72cc
parentf0b5df21f89fc2b1f6fa25a9bcad3abc2fd053c3 (diff)
downloadsq-user-guide-6fa2c546fe2451b7b7094e05d105937143e033ea.tar.gz
doc: Fix documentation path to include "public"
-rw-r--r--.gitlab-ci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d089df6..d0e5908 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,10 +5,11 @@ pages:
- apt-get update -yqq
- apt-get install -yqq --no-install-recommends pandoc build-essential git texlive-latex-extra texlive-latex-base texlive-fonts-recommended lmodern
- make
- - mv sq-guide.html index.html
+ - mkdir public
+ - mv sq-guide.html public/index.html
+ - mv sq-guide.pdf public/sq-guide.pdf
artifacts:
paths:
- - sq-guide.pdf
- - index.html
+ - public
rules:
- if: '$CI_COMMIT_BRANCH == "main"'