Bump urllib3 from 1.26.16 to 1.26.17 #14
Workflow file for this run
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: AppEngine Deployment | |
# For this to work, you must verify the App Engine Admin API is enabled. | |
on: [push] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Retrieving the repo | |
uses: actions/checkout@v3 | |
- name: Preparing GCloud Auth | |
uses: 'google-github-actions/auth@v1' | |
with: | |
credentials_json: '${{ secrets.GCLOUD_AUTH }}' # You must run base64 ./gcp_creds.json, then paste the output into the secrets area in your repo settings. | |
- name: Setup GCloud CLI | |
uses: 'google-github-actions/setup-gcloud@v1' | |
with: | |
project_id: "facts-sender" | |
- name: Deploy | |
run: "gcloud app deploy ./front_end_app.yaml --quiet" |