Hi, I have a problem with config.yml which all config it’s been doing normally. The problem is mv and cp commend can’t point to right location to do process. Let me explain my project structure
---- .circleci/
---------- config.yml
---- project_name/
---------- model/
---------- controller/
---------- config/
---------- view/
---------- Gemfile
and a pieces of config that has problem
steps:
- checkout
- run: mv /project_name/config/sidekiq.yml.example /project_name/config/sidekiq.yml
- run: cp /project_name/config/settings/test.yml /project_name/config/settings/staging.yml
#Which version of bundler?
- run:
name: Which bundler?
command: bundle -v
As you see I attempted to use mv and cp which pointed direct to folder name and files but I got error no directory and files. How I do config CI with folder like this?
