ft: add envoy OK page at / + list notes UI + timestamp in proto struct #34
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
name: CD | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
jobs: | |
push-backend: | |
name: Build backend | |
uses: ./.github/workflows/build-push-gcloud.yaml | |
with: | |
repo: services/whisper-notes-backend | |
dockerfile: backend.Dockerfile | |
registry: europe-north1-docker.pkg.dev | |
secrets: inherit | |
push-frontend: | |
name: Build frontend | |
uses: ./.github/workflows/build-push-gcloud.yaml | |
with: | |
repo: services/whisper-notes-frontend | |
dockerfile: frontend.Dockerfile | |
registry: europe-north1-docker.pkg.dev | |
# CHANGEME: Backend URL to use during frontend build | |
build_args: | | |
VITE_GRPC_BACKEND=https://whisper-notes.shivanshs9.me/api | |
secrets: inherit |