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
|
2020-03-05 21:40:47 +00:00
|
|
|
- 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/*
|
|
|
|
|