mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 02:31:06 +01:00
2a1d790bc1
Signed-off-by: danfengliu <danfengl@vmware.com>
9 lines
134 B
Bash
9 lines
134 B
Bash
#!/bin/bash
|
|
set -x
|
|
|
|
set -e
|
|
|
|
function uploader {
|
|
gsutil cp $1 gs://$2/$1
|
|
gsutil -D setacl public-read gs://$2/$1 &> /dev/null
|
|
} |