Depending on the env I deploy to I want to ignore diffrent files but using --ignore-file
option does not work.
I have tried:
gcloud app deploy app.prod.yaml --ignore-file=.gcloudignore.prod --project project-id
gcloud app deploy app.prod.yaml --ignore-file .gcloudignore.prod --project project-id
gcloud app deploy app.prod.yaml --ignore-file=.gcloudignore.prod --project project-id --no-cache
None of them worked. Am I doing something wrong?