This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Operations-Research-Tool/.gitlab-ci.yml
T
2024-10-14 20:40:21 +00:00

21 lines
310 B
YAML

image: node:20
# Cache für schnellere Builds
cache:
paths:
- node_modules/
- .next/cache/
before_script:
- npm ci
pages:
script:
- npm run build
- mkdir public
- cp -r out/* public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH