Google App Engine - Github Actions
Budget: $10 – $30 USD
Have a long running Github process to deploy an app. It is no longer work, and I can't figure out why. Goal of this project is simple. Get it to run.
Currently it errors at at google-cloud-checkout@v0 said File Not Found for credential key.
Currently YAML BELOW
----
name: Production
on:
push:
branches:
- master
jobs:
Deploy:
name: Deploy to Production
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- uses: 'actions/checkout@v3'
- id: 'auth'
uses: 'google-github-actions/auth@v0'
with:
credentials_json: ${{ secrets.GCP_CREDS }}
- name: Build project
uses: 'actions/checkout@v3'
- name: Setup Google Cloud
uses: 'google-github-actions/setup-gcloud@v0'
- name: Deploy to Google Cloud
run: gcloud app deploy --project finish-analytics --promote app.production.yaml
Currently it errors at at google-cloud-checkout@v0 said File Not Found for credential key.
Currently YAML BELOW
----
name: Production
on:
push:
branches:
- master
jobs:
Deploy:
name: Deploy to Production
runs-on: ubuntu-latest
permissions:
contents: 'read'
id-token: 'write'
steps:
- uses: 'actions/checkout@v3'
- id: 'auth'
uses: 'google-github-actions/auth@v0'
with:
credentials_json: ${{ secrets.GCP_CREDS }}
- name: Build project
uses: 'actions/checkout@v3'
- name: Setup Google Cloud
uses: 'google-github-actions/setup-gcloud@v0'
- name: Deploy to Google Cloud
run: gcloud app deploy --project finish-analytics --promote app.production.yaml