mirror of
https://github.com/zu1k/nali.git
synced 2025-01-22 21:29:02 +08:00
43388e84a9
Signed-off-by: zu1k <i@zu1k.com>
21 lines
369 B
Bash
21 lines
369 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
aws configure --profile s3 <<-EOF > /dev/null 2>&1
|
|
${S3_ACCESS_KEY_ID}
|
|
${S3_SECRET_ACCESS_KEY}
|
|
auto
|
|
text
|
|
EOF
|
|
|
|
VERSION=$(git describe --tags || echo "unknown version")
|
|
aws s3 cp bin s3://$S3_BUCKET/$VERSION/ --profile s3 --no-progress --endpoint-url $S3_ENDPOINT --recursive
|
|
|
|
aws configure --profile s3 <<-EOF > /dev/null 2>&1
|
|
null
|
|
null
|
|
null
|
|
text
|
|
EOF
|