-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying new way to deplot to google cloud run
- Loading branch information
1 parent
0f128eb
commit 00f1a9b
Showing
3 changed files
with
48 additions
and
85 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Deploy to Google Cloud Run | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
setup-build-publish-deploy: | ||
name: Setup, Build, Publish, and Deploy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
|
||
- name: Build and push Docker image | ||
id: docker_build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
push: true | ||
tags: shivamgutgutia/contactify:latest | ||
|
||
- name: Setup gcloud CLI | ||
uses: google-github-actions/setup-gcloud@master | ||
with: | ||
project_id: shivam-contacts-generator | ||
service_account_key: ${{ secrets.GCLOUD_AUTH }} | ||
|
||
- name: Deploy to Cloud Run | ||
run: | | ||
gcloud run deploy contacts-generator-backend-continuous \ | ||
--image shivamgutgutia/contactify:latest \ | ||
--region asia-south1 \ | ||
--project=shivam-contacts-generator \ | ||
&& gcloud run services update-traffic contacts-generator-backend-continuous --to-latest --region=asia-south1\ | ||
--platform managed |
This file was deleted.
Oops, something went wrong.