deploy-cloud-functions icon indicating copy to clipboard operation
deploy-cloud-functions copied to clipboard

A GitHub Action that deploys source code to Google Cloud Functions.

Results 15 deploy-cloud-functions issues
Sort by recently updated
recently updated
newest added

### Question As an example - I am trying to implement the equivalent of gcloud command ``` gcloud functions deploy my-function \ --runtime go113 \ --trigger-topic=some_topic \ --service-account=$CLOUD_FUNCTION_SA_EMAIL \ --project...

question
P2
triaged

### TL;DR I have a workflow set up to publish a function, which works successfully -_if_ the function does not already exist. If the function does exist (e.g. from a...

bug

### TL;DR Add param to set for HTTP trigger option Allow unauthenticated invocations ### Detailed design _No response_ ### Additional information _No response_

enhancement

### TL;DR I'd love to take advantage of the new 2nd Gen cloud functions, and it'd be great to deploy them with github actions. Ideally, I'd like to specify the...

enhancement

### TL;DR `google-github-actions/deploy-cloud-functions` cannot re-include files in `.gcloudignore` with `!PATH` syntax as `gcloud` CLI does. ### Expected behavior With the following context: `.gcloudignore`: ``` #!include:.gitignore !build/** ``` `.gitignore`: ``` build...

bug
upstream

### TL;DR When deploying using the CLI the deployment works: ```yaml - name: Deploy to GCF run: | gcloud functions deploy **** \ --min-instances 4 \ --runtime nodejs12 \ --allow-unauthenticated...

bug

This PR is meant to automate self updating the deploy-cloud-function readme to include up to date event trigger types from gcloud. Example output below: This PR specifically adds: - `Utils`...

### TL;DR This [tutorial](https://cloud.google.com/blog/topics/developers-practitioners/deploying-serverless-platforms-github-actions) suggests that you use the `providers/cloud.storage/eventTypes/object.finalize` syntax for event triggers, but this leads to the extremely cryptic "The request has errors" error. Using the `google.storage.object.finalize` syntax...

bug

Current method of testing HTTP function sends a request to the function endpoint to confirm successful deployment. However for event functions, this is not possible as they are triggered by...

As discussed in [https://github.com/google-github-actions/deploy-cloud-functions/issues/304](https://github.com/google-github-actions/deploy-cloud-functions/issues/304), it would be great to have gen2 functions support through this GitHub action without needing any further action rather than just specifying through an input value...

Fork