commit a746cda03880bb7e782487d3e428dda8802fb786 parent 779060b430ac42fb79463cb473d58315f70580f4 Author: Ryan Wolf <johnwayne@pseudony.ms> Date: Sun, 9 Feb 2020 20:39:59 -0500 take a stab at satisfying the new deps system Diffstat:
| M | cloudbuild.yaml | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/cloudbuild.yaml b/cloudbuild.yaml @@ -4,7 +4,10 @@ steps: args: - '-c' - | - cat app.yaml.example | sed "s/EXAMPLE_PASSWORD/${_PASSWORD}/" > app.yaml + cat app.yaml.example | sed "s/EXAMPLE_PASSWORD/${_PASSWORD}/" > app.yaml +# fetch dependencies +- name: mirror.gcr.io/library/golang + args: ['go', 'mod', 'init'] - name: "gcr.io/cloud-builders/gcloud" args: ["app", "deploy"] timeout: "1600s"