1
Fork 0
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-09-30 05:11:34 +01:00
notes/.gitlab-ci.yml
Jake Howard 9b5cac6212
Set network timeout
CI is quite slow it seems
2020-10-01 18:06:41 +01:00

19 lines
304 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 --network-timeout 100000
- npm run release
artifacts:
paths:
- public
only:
- master