2021-07-27 00:18:55 +03:00
|
|
|
#!/bin/bash
|
|
|
|
# Copyright 2021 The Go Authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style
|
|
|
|
# license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2022-10-31 23:30:20 +03:00
|
|
|
# Deploy database files.
|
2022-05-27 21:31:25 +03:00
|
|
|
gsutil -m cp -r /workspace/db/* gs://go-vulndb
|
2022-10-31 23:30:20 +03:00
|
|
|
|
|
|
|
# Deploy web files.
|
|
|
|
for file in index 404 copyright privacy; do
|
|
|
|
gsutil -h "Content-Type:text/html" cp webconfig/$file.html gs://go-vulndb/$file
|
|
|
|
done
|
|
|
|
gsutil cp webconfig/favicon.ico gs://go-vulndb
|
|
|
|
|