mat.services/.gitlab-ci.yml

20 lines
223 B
YAML
Raw Normal View History

2018-07-23 02:55:29 +00:00
image: node
before_script:
2018-07-24 01:15:58 +00:00
- yarn install
2018-07-23 02:55:29 +00:00
cache:
paths:
- node_modules/
pages:
script:
2018-07-24 03:30:37 +00:00
- yarn generate
- mkdir public
- mv dist/* public/
2018-07-23 02:55:29 +00:00
artifacts:
paths:
2018-07-24 03:28:00 +00:00
- public
2018-07-23 02:55:29 +00:00
only:
- master