vendor/bundle directory is removed even when cached
In .gitlab-ci.yml
cache:
untracked: true
paths:
- .bundle
- vendor/
When the build is run, the vendor/bundle directory is automatically removed...
Fetching changes...
Removing .bundle/
Removing db/schema.rb
Removing log/development.log
Removing log/test.log
Removing public/uploads/
Removing tmp/cache/
Removing tmp/miniprofiler/
Removing vendor/bundle/
I have attempted to install the bundle into another directory, but the runner removes .bundle/ by default also.
Shouldn't the runner not remove the vendor directory if it is configured to be cached?
thanks!