I was trying to create trigger for my cloud build and set my cloudbuild.yaml but keeps this error L:Failed to trigger build: generic::invalid_argument: if ‘build.service_account’ is specified, the build must either (a) specify ‘build.logs_bucket’, (b) use the REGIONAL_USER_OWNED_BUCKET build.options.default_logs_bucket_behavior option, or (c) use either CLOUD_LOGGING_ONLY / NONE logging options
I set my cloudbuild.yaml this way:
steps:
build the container image
- name: “gcr.io/cloud-builders/docker”
args: [“build”, “-t”, “gcr.io/$PROJECT_ID/gcpdevops”, “.”]
images:
Please help me…