gilde-ci-cd/templates/common/common-ci-cache.gitlab-ci.yml
Timo Beller 0364637b0d refactor(cache): Löse globalen-Cache aus common-ci-variablen heraus
Für nutzer ist es unerwartet und ggf. unerwünscht, dass beim Einbinden von Variablen ein Cache mitkommt.
2022-07-20 17:58:05 +02:00

13 lines
212 B
YAML

cache:
key: "$CI_JOB_NAME"
paths:
# Cache Maven
- .m2/repository
# Cache NPM
#- $FRONTEND_DIR/dist
# Cache Gradle
- .gradle
- '**/build'
- "**/target"
#- "**/node_modules"