Khaganat_web_css/.gitlab-ci.yml

20 lines
375 B
YAML
Raw Normal View History

2020-03-01 15:08:53 +00:00
Build CSS:
stage: build
tags:
- Docker
image: "node:latest"
script:
- npm install bulma
- npm install node-sass
- cp bulma.sass node_modules/bulma/bulma.sass
- cd node_modules/bulma/
- npm run build-sass
2020-03-05 21:31:52 +00:00
- cd css
- for f in *bulma*; do mv "$f" "${f/bulma/style}"; done
2020-03-05 21:31:52 +00:00
2020-03-01 15:08:53 +00:00
artifacts:
paths:
- node_modules/bulma/css/*