Skip to content

region flag added

region flag added #7

Workflow file for this run

# name: Deploy to Google Cloud Run
# on:
# push:
# branches:
# - master
# jobs:
# deploy:
# runs-on: ubuntu-latest
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: 14
# - name: Install dependencies
# run: npm install
# - name: Authenticate with Google Cloud
# uses: GoogleCloudPlatform/github-actions/setup-gcloud@master
# with:
# project_id: ${{ secrets.GCLOUD_PROJECT_ID }}
# service_account_key: ${{ secrets.GCLOUD_SERVICE_KEY }}
# export_default_credentials: true
# - name: Build Docker image
# run: |
# docker build -t gcr.io/${{ secrets.GCLOUD_PROJECT_ID }}/nestjs-app:${{ github.sha }} .
# docker push gcr.io/${{ secrets.GCLOUD_PROJECT_ID }}/nestjs-app:${{ github.sha }}
# - name: Deploy to Cloud Run
# run: |
# gcloud run deploy nestjs-app \