Skip to content

Commit

Permalink
Create deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Maleehak authored Apr 18, 2024
1 parent f977d6e commit ef62a23
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Deploy backend to GCP

on:
push:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
server-id: github

- name: Build with Maven
run: mvn -B -f backend/pom.xml package

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'

- name: Build with Maven
run: mvn -B -f backend/pom.xml package

- name: Configure Docker
run: gcloud auth configure-docker

- name: Build Docker image
run: |
docker build --build-args GOOGLE_FILE_PASSWORD=$GOOGLE_FILE_PASSWORD -t gcr.io/brief-me-backend/brief-me-backend:1.0 -f docker/Dockerfile .
docker push gcr.io/brief-me-backend/brief-me-backend:1.0
- name: Deploy to GCP
run: |
gcloud run deploy brief-me-backend-app --image gcr.io/brief-me-backend/brief-me-backend:1.0 --platform managed
env:
GOOGLE_APPLICATION_CREDENTIALS: ${{ secrets.GCP_SA_KEY }}

0 comments on commit ef62a23

Please sign in to comment.