Skip to content

sami.fix : building the main #125

sami.fix : building the main

sami.fix : building the main #125

Workflow file for this run

name: Deploy to App Engine
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Google Cloud SDK
uses: google-github-actions/setup-gcloud@v0
with:
project_id: ${{ secrets.GCP_PROJECT_ID }}
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
- name: Configure gcloud CLI
run: gcloud config set project ${{ secrets.GCP_PROJECT_ID }}
- name: Deploy to App Engine
run: gcloud app deploy app.yaml --quiet --version $GITHUB_SHA