From ee824da6e007f0391d2e053133f1db05951b9af1 Mon Sep 17 00:00:00 2001 From: Ray Miller Date: Sun, 8 Oct 2023 15:06:52 +0100 Subject: [PATCH] Add deploy script --- deploy.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 deploy.sh diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..7517480 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +set -e + +V=$(git describe --tags) + +zip function.zip go.mod go.sum cloudfn.go match/match.go anagram/anagram.go util/util.go + +gsutil cp function.zip gs://word-search-1729-assets/cloudfn/${V}/ \ No newline at end of file