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
2024-10-14 21:49:04 +00:00

21 lines
313 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 -p public
- cp -r out/* public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH