blog/.gitlab-ci.yml
Sanchayan Maity eb156a9531 Update gitlab ci configuration
Expecting the changes to do the builds faster.

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
2020-04-05 11:35:48 +05:30

21 lines
301 B
YAML

image: haskell:8.6.3
variables:
STACK_ROOT: $CI_PROJECT_DIR/.stack
pages:
cache:
paths:
- _cache
- .stack
before_script:
- stack install --only-dependencies
- stack build
script:
- stack exec site build
artifacts:
paths:
- public
only:
- master