Hi, I’ve been trying to set up circleci in but I’m having trouble stubbing in variables from my secrets.yml
file that is not included in the repo. I’ve tried to set them through Settings -> Environment Variables as well as adding this to the config file
dependencies:
override:
- mv config/secrets.ci.yml config/secrets.yml
and create a second secrets file with fake information that I can add to the repo.
I’ve also tried to add the variable directly to the config.yml
file like this
environment:
apikey_id: "123"
They are still failing, asking me to include an API key that is in the secrets.yml
file
Does anyone have any ideas?