Skip to content

Instantly share code, notes, and snippets.

@maxday
Created March 22, 2020 20:45
Show Gist options
  • Save maxday/8d7e5fbf72b21fbc94649b74c1391a83 to your computer and use it in GitHub Desktop.
Save maxday/8d7e5fbf72b21fbc94649b74c1391a83 to your computer and use it in GitHub Desktop.
- name: Deploy
run: |
gcloud components install beta --quiet
gcloud beta run deploy ${{ secrets.GCP_APP_NAME }} \
--image gcr.io/${{ secrets.GCP_PROJECT }}/${{ secrets.GCP_APP_NAME }} \
--platform ${{ secrets.GCP_PLATFORM }} \
--allow-unauthenticated --service-account ${{ secrets.GCP_EMAIL }} \
--region ${{ secrets.GCP_REGION }} \
--set-env-vars DISABLE_SIGNAL_HANDLERS=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment