docs.sr2.uk/.gitlab-ci.yml
2025-11-05 17:03:56 +00:00

19 lines
261 B
YAML

image: node:latest
# allow caching for faster deployment
cache:
paths:
- node_modules/
- public/
- .cache/
pages:
stage: deploy
script:
- yarn install
- yarn build:gitlab
artifacts:
paths:
- public
only:
- main