1
Fork 0
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-09-30 04:11:33 +01:00
notes/.gitlab-ci.yml

18 lines
305 B
YAML

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