commit fe3db5b02f31f0ea2917f3ae7236706d5b4ab2f3
parent a746cda03880bb7e782487d3e428dda8802fb786
Author: Ryan Wolf <johnwayne@pseudony.ms>
Date: Sun, 9 Feb 2020 20:43:50 -0500
trying get instead of mod init
I will try many things to avoid hardcoding the deps twice, here and in the .go
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cloudbuild.yaml b/cloudbuild.yaml
@@ -7,7 +7,7 @@ steps:
cat app.yaml.example | sed "s/EXAMPLE_PASSWORD/${_PASSWORD}/" > app.yaml
# fetch dependencies
- name: mirror.gcr.io/library/golang
- args: ['go', 'mod', 'init']
+ args: ['go', 'get', '-u', './...']
- name: "gcr.io/cloud-builders/gcloud"
args: ["app", "deploy"]
timeout: "1600s"