aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-cl.yml
blob: 4343d80f282200c2d339e7f39598ec271f95337f (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
32
33
34
35
image: silex/emacs:26.3-alpine-dev

stages:
  - build
  - deploy

build-html:
  stage: build
  script:
    make html
  artifacts:
    paths:
      - public_html/

build-css:
  stage: build
  image: finalgene/lessc:3.10
  script:
    make css
  artifacts:
    paths:
      - public_html/

pages:
  stage: deploy
  dependencies:
    - build-html
    - build-css
  script:
    - echo "Deploying to pages"
  artifacts:
    paths:
      - public_html/
  only:
    - master