1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-05 18:23:56 +01:00
notes/.gitlab-ci.yml

19 lines
243 B
YAML
Raw Normal View History

2020-09-30 17:43:41 +01:00
image: "node:lts-slim"
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
2020-09-30 20:13:36 +01:00
- /root/.npm
2020-09-30 19:55:22 +01:00
- ./.cache
2020-09-30 17:43:41 +01:00
pages:
stage: deploy
script:
- npm ci --production
- npm run release
artifacts:
paths:
- public
only:
- master