Khaganat_web_css/.gitlab-ci.yml
deed 6b2db11968 Update .gitlab-ci.yml
ajout du changement de nom
2020-03-05 22:40:47 +01:00

19 lines
375 B
YAML

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
- cd css
- for f in *bulma*; do mv "$f" "${f/bulma/style}"; done
artifacts:
paths:
- node_modules/bulma/css/*