gilde-ci-cd/templates/common/common-ci-cache.gitlab-ci.yml

13 lines
219 B
YAML

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