This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
Add gunicorn debug #52
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: Deploy to App Engine | |
on: | |
push: | |
branches: [ brave-perf-dashboard-py3] | |
jobs: | |
deploy-to-appengine: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- id: 'replace-strings' | |
run: brave/replace_strings.sh | |
- id: 'auth' | |
uses: 'google-github-actions/auth@v1.1.1' | |
with: | |
credentials_json: '${{ secrets.GCP_SA_KEY}}' | |
- name: Setup Google Cloud SDK | |
uses: google-github-actions/setup-gcloud@v1.1.1 | |
with: | |
project_id: 'brave-perf-dashboard' | |
- name: Set up Python 3 and deploy via script | |
uses: actions/setup-python@v4.7.1 | |
with: | |
python-version: '3.7' | |
- run: python dashboard/bin/deploy --promote app.yaml api.yaml upload.yaml upload-processing.yaml dispatch.yaml index.yaml | |
env: | |
VERSION: ${{github.run_number}} |