36 lines
468 B
YAML
36 lines
468 B
YAML
|
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
|