deploy-cloudrun
deploy-cloudrun copied to clipboard
A GitHub Action for deploying services to Google Cloud Run.
`--add-cloudsql-instances` as documented in https://cloud.google.com/sql/docs/mysql/connect-run#node.js
### TL;DR Here is the example I followed: https://github.com/google-github-actions/example-workflows/blob/main/workflows/deploy-cloudrun/cloudrun-source.yml - Repository exists - Permission exists ### Expected behavior Expected the Clour Run to deploy the Node application from the source....
### TL;DR Allow to deploy Cloud Run jobs. ### Detailed design _No response_ ### Additional information _No response_
### TL;DR Hi There, I was trying to deploy an image to GCP cloud run, using this workflow. My question is : How can I specify the vpc-connector to be...
I manually changed traffic rules and afterwards the action won't automatically deploy new revisions to be the latest serving revision. The CLI has a command to automatically make latest the...
The following valid action invocation poses a security risk ```yml - name: 🚀 Deploy to Cloud Run id: deploy uses: google-github-actions/deploy-cloudrun@v0 with: service: api image: gcr.io/${{ secrets.PROJECT_ID }}/api region: us-central1...
### TL;DR If you put in your `secrets` or `env_vars` in list format like the docs: ``` secrets: | SECRET=secret:latest SECRET2=secret2:latest ``` The yaml is parsed incorrectly to the cli...
### TL;DR Allow multiple env_vars to be specified in a `.env` file. ### Design Docker supports specifying multiple environmental variables in a `.env` file with the command line argument `--env-file`,...
### TL;DR gcloud run deploy offers add remove set and clear-cloudsql-instances flags. It seems that this should be a first class property like secrets and env's for this action. ###...
### TL;DR I would like the possibility (probably an input like sanitize-values: true) to sanitize the inputs based on GCP naming restrictions. A prime example is that we produce branch-based...