new-ryuslash.org/.gitlab-ci.yml
2019-10-06 18:50:34 -07:00

35 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