windowbar
Version:
Emulate window title bar in three different styles.
31 lines (28 loc) • 401 B
YAML
stages:
- compile
- deploy
dist:
stage: compile
image: node:current
cache:
paths:
- node_modules/
script:
- npm install
- npm run dist
only:
- master
artifacts:
paths:
- dist/index.js
pages:
stage: deploy
script:
- mkdir .public
- cp -r dist demo .public
- mv .public public
artifacts:
paths:
- public
only:
- master