Skip to content

Instantly share code, notes, and snippets.

@Mattchewone
Created November 2, 2022 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Mattchewone/8dbdda25fc8cc5bb43332ee3543f2ce7 to your computer and use it in GitHub Desktop.
Save Mattchewone/8dbdda25fc8cc5bb43332ee3543f2ce7 to your computer and use it in GitHub Desktop.
deploy function:
stage: deploy
image: google/cloud-sdk:latest
script:
- cd $APP
- gcloud auth activate-service-account --key-file $GCLOUD_SERVICE_KEY
- gcloud config set project $GCLOUD_SERVICE_PROJECT
- gcloud functions deploy $APP --gen2 --runtime nodejs16 --entry-point $APP --trigger-http --region=europe-west1 --memory=2048 --timeout=10m --allow-unauthenticated
only:
- master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment