1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-05 19:33:53 +01:00
notes/.gitlab-ci.yml

20 lines
304 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:
- node_modules/
- .yarn
- .cache
2020-09-30 17:43:41 +01:00
pages:
stage: deploy
script:
- yarn install --prefer-offline --production --network-timeout 100000
2020-09-30 17:43:41 +01:00
- npm run release
artifacts:
paths:
- public
only:
- master