Automatic deployment to Google Cloud Functions

In this post I’ll show you how to achieve a Heroku-like push-to-deploy capability on Google Cloud Functions. If you don’t know Google Cloud Functions (GCF), it’s a serverless architecture for running services on Google’s services. It’s equivalent to AWS Lambda. You can read about it here. Goal Pushing any code to the master branch of our Github repository should automatically trigger a deploy of our new code to GCF. »