Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
406 B · 12 lines
Shell
12345678910111213#!/bin/bash
set -euo pipefail
# go install github.com/minio/mc@latest# mc alias set streamplace-account https://storage.googleapis.com/streamplace-account GOOGACCESS_KEY_ID SECRET_ACCESS_KEY
hash=$(openssl dgst -sha256 "$1" | awk '{ print $2 }')dest="$hash/$(basename "$1")"mc cp "$1" "streamplace-account/streamplace-fixtures/$dest"
echo "https://storage.googleapis.com/streamplace-fixtures/$dest"