aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: a908b7ea724e7385a3133a03a405065715b92e3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image: hugomods/hugo:latest

variables:
  HUGO_ENV: production

default:
  before_script:
    - apk add typst

test:
  script:
    - hugo
  rules:
    - if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH

pages:
  script:
    - hugo
  artifacts:
    paths:
      - public
  rules:
    - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH