-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1 +1,37 @@ | ||
name: Deploy API ML Brait | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: code checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: install the gcloud cli | ||
uses: google-github-actions/setup-gcloud@v0 | ||
with: | ||
project_id: ${{ secrets.GOOGLE_PROJECT }} | ||
service_account_key: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} | ||
export_default_credentials: true | ||
|
||
- name: build and push the docker image | ||
env: | ||
GOOGLE_PROJECT: ${{ secrets.GOOGLE_PROJECT }} | ||
run: | | ||
gcloud auth configure-docker asia-southeast2-docker.pkg.dev | ||
docker build --platform linux/amd64 -t asia-southeast2-docker.pkg.dev/$GOOGLE_PROJECT/ci-cd-pipeline/BRAIT-machine-learning-API:latest . | ||
docker push asia-southeast2-docker.pkg.dev/$GOOGLE_PROJECT/ci-cd-pipeline/BRAIT-machine-learning-API:latest | ||
- name: deploy to Cloud Run | ||
env: | ||
GOOGLE_PROJECT: ${{ secrets.GOOGLE_PROJECT }} | ||
run: | | ||
gcloud run deploy back-end-service-brait \ | ||
--image asia-southeast2-docker.pkg.dev/$GOOGLE_PROJECT/ci-cd-pipeline/BRAIT-machine-learning-API:latest \ | ||
--platform managed \ | ||
--region asia-southeast2 \ | ||
--allow-unauthenticated \ | ||
--max-instances=1 |