Skip to content

Debugging deploy

Debugging deploy #8

Workflow file for this run

name: Deploy to Google App Engine
on:
push:
branches:
- master
- update
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.10.0
- run: npm install
- run: npm run build
- uses: google-github-actions/auth@v2
with:
project_id: 'sinuous-crow-410507'
credentials_json: ${{ secrets.GCLOUD_ACCOUNT_KEY }}
- uses: google-github-actions/deploy-appengine@v2
with:
working_directory: prod
deliverables: app.yaml
flags: '--verbosity=debug'