20 lines
374 B
YAML
20 lines
374 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
|
|
- npm run export # Export für statische Seiten
|
|
artifacts:
|
|
paths:
|
|
- out # Das 'out'-Verzeichnis, wenn 'next export' verwendet wird
|
|
rules:
|
|
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH |