0

I'm trying to make a custom google action using the Google Actions console. So far I've had a pretty rough time, given that all the tutorials I found are outdated(-2020). What I did was start with a sample Hello World project: Starting with a hello world project

And then go straight to the test tab (I did this because I thought I was doing something wrong). Every time I try to test I get the error message "Cloud function deployment failed":

Getting the error

I tried looking around in the official documentation, but I couldn't find anything that helped.

Prisoner
  • 49,922
  • 7
  • 53
  • 105

1 Answers1

2

First - it is important that you understand that any Conversational Actions created using the Actions console will be shut down starting June 13th, 2023.

I think the problem in your case is that the Hello World uses the Inline Cloud Functions Editor to hold the code. You can see this if you go to the Develop tab along the top and then the Webhook navigation on the left.

As the banner says there, in order to deploy this function, you need to associate the project with a billing account in the Google Cloud console. Without this billing account, it won't be able to deploy the function, and you'll get that vague error.

Cloud Functions editor

Prisoner
  • 49,922
  • 7
  • 53
  • 105