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

pages:
  variables:
    HUGO_ENV: production
    TYPST_PACKAGE_GIT_REPO: https://gitlab.com/KaranJayachandra/typst.git
  script:
    - apk add typst
    - git clone ${TYPST_PACKAGE_GIT_REPO} ~/.local/share/typst/packages/local
    - typst compile resume.typ static/resume.pdf
    - hugo
    - ls public
  artifacts:
    paths:
      - public
  rules:
    - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH