blob: c8a6651c09d48aac933922f3349b4d59889e3068 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
image: hugomods/hugo:latest
main:
variables:
HUGO_ENV: production
TYPST_PACKAGE_GIT_REPO: https://gitlab.com/KaranJayachandra/typst.git
script:
- apk add typst
- git clone ${TYPST_PACKAGE_GIT_REPO} $XDG_DATA_HOME/typst/packages/local
- typst compile resume.typ
- cp resume.pdf static/resume.pdf
- hugo
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
|