deploy-cloudrun icon indicating copy to clipboard operation
deploy-cloudrun copied to clipboard

A GitHub Action for deploying services to Google Cloud Run.

Results 34 deploy-cloudrun issues
Sort by recently updated
recently updated
newest added

## Summary Enables updating Cloud Run Jobs using this action for #364 . It creates a new input called `job` which is the name of the job (similar to, but...

### TL;DR When using `no_traffic: true` once, it's hard to set the traffic [Docs](https://cloud.google.com/sdk/gcloud/reference/run/deploy#FLAGS) for `--no-traffic` state: > [After a deployment with this flag the LATEST revision will not receive...

enhancement

### TL;DR I cannot pass arguments starting with a hyphen (say, -run_server) in the --args. Indeed, it translates it to the gcloud command `--args -run_server` which then complains about no...

bug

### TL;DR The docs claim "When using a custom metadata YAML file, all other inputs are ignored". This is not true of the `region` key, instead using the default `us-central1`...

bug

### TL;DR Deployment fails when deploying to Cloud Run from source with using the default template. ### Expected behavior Successful deploy ### Observed behavior Failure to deploy with the following...

bug

### TL;DR I have metadata for job, but the actions only allow knative yaml. ``` apiVersion: run.googleapis.com/v1 kind: Job metadata: name: job labels: run.googleapis.com/satisfiesPzs: 'true' cloud.googleapis.com/location: southamerica-east1 spec: template: metadata:...

enhancement

### TL;DR This GHA replaces `=` separated flags with space separate flags, which can cause parsing issues. ### Expected behavior If I add in the flags `--command=python --args='-m,job.main'`, the output...

bug

### TL;DR I'm trying to deploy to cloud run and one of the `env_vars` has a value that is multi line, specifically it is a PEM key. This seems to...

bug

### TL;DR I'm seeing an issue with deploying a job (see definition below) where it seems like the action is trying to run `gcloud run deploy update` vs `gcloud run...

bug

Closes #555. Adds an output attribute to the action, `revision`, which is the `latestCreatedRevisionName`. This will allow subsequent action steps to allocate traffic/run any checks on _the new revision specifically_.