Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
shivamgutgutia committed Apr 13, 2024
1 parent f4065d1 commit 6a170c0
Showing 1 changed file with 48 additions and 48 deletions.
96 changes: 48 additions & 48 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,48 +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_TOKEN }}

- 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/auth@v2
with:
credentials_json: ${{ secrets.GCLOUD_AUTH }}
project_id: shivam-contacts-generator

- name: Deploy to Cloud Run
run: |
gcloud run deploy contactify-backend \
--image shivamgutgutia/contactify:latest \
--region asia-south1 \
--project=shivam-contacts-generator \
&& gcloud run services update-traffic contactify-backend --to-latest --region=asia-south1\
--platform managed
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_TOKEN }}

- 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/auth@v2
with:
credentials_json: ${{ secrets.GCLOUD_AUTH }}
project_id: shivam-contacts-generator

- name: Deploy to Cloud Run
run: |
gcloud run deploy contactify-backend \
--image shivamgutgutia/contactify:latest \
--region asia-south1 \
--project=shivam-contacts-generator \
&& gcloud run services update-traffic contactify-backend --to-latest --region=asia-south1\
--platform managed

0 comments on commit 6a170c0

Please sign in to comment.