summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/templates/Pages/JBake.gitlab-ci.yml
blob: 7a485f8d1350b4321345e5dc6a892e1988ad6f91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This template uses the java:8 docker image because there isn't any
# official JBake image at this moment
#
# JBake https://jbake.org/ is a Java based, open source, static site/blog generator for developers & designers
#
# This yml works with jBake 2.5.1
# Feel free to change JBAKE_VERSION version 
#
# HowTo at: https://jorge.aguilera.gitlab.io/howtojbake/

image: java:8

variables:
    JBAKE_VERSION: 2.5.1

# We use SDKMan as tool for managing versions
before_script:
   - apt-get update -qq && apt-get install -y -qq unzip zip
   - curl -sSL https://get.sdkman.io | bash
   - echo sdkman_auto_answer=true > /root/.sdkman/etc/config
   - source /root/.sdkman/bin/sdkman-init.sh
   - sdk install jbake $JBAKE_VERSION < /dev/null
   - sdk use jbake $JBAKE_VERSION

# This build job produced the output directory of your site
pages:
 script:
 - jbake . public
 artifacts:
   paths:
   - public