regexper-static/.gitlab-ci.yml
2019-01-01 09:13:24 -05:00

26 lines
349 B
YAML

image: node:8
stages:
- build
cache:
paths:
- node_modules/
before_script:
- yarn install
pages:
stage: build
variables:
GA_PROP: $PROD_GA_PROPERTY
script:
- BUILD_PATH="$(pwd)/public" yarn gulp build
- rm -r public/__discard__
- gzip -k -6 $(find public/ -type f)
artifacts:
paths:
- public
only:
- master