notes/.gitlab-ci.yml

19 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