#!/bin/bash

set -e

[ "$DEBUG" = "true" ] && set -x

BUILD_COMMAND="cloud-build"
DEPLOY_COMMAND="cloud-deploy"

$BUILD_COMMAND
$DEPLOY_COMMAND
