summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: bd0816833384e4270da128fc3c8c2e9745e4ab72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
image: registry.gitlab.com/sequoia-pgp/build-docker-image/bookworm-pandoc:latest

pages:
  script:
    - make
    - mkdir public
    - mv sq-guide.html public/index.html
    - mv sq-guide.pdf public/sq-guide.pdf
  artifacts:
    paths:
      - public
  rules:
    - if: '$CI_COMMIT_BRANCH == "main"'