1
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-07-01 09:53:53 +01:00
notes/.gitlab-ci.yml
2020-10-01 17:55:59 +01:00

20 lines
279 B
YAML

image: "node:lts-slim"
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
- .yarn
- .cache
pages:
stage: deploy
script:
- yarn install --prefer-offline --production
- npm run release
artifacts:
paths:
- public
only:
- master