1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-05 00:40:26 +00:00
qb64/.ci/deploy.sh
Luke Ceddia 93645ed7e6
Add osx
2021-02-01 20:58:41 +11:00

15 lines
537 B
Bash
Executable file

#!/bin/bash
OS=$1
TZ=UTC now=`date +"%F-%H-%M-%S"`
BUCKET=qb64-dev-builds
filename="/tmp/qb64_${now}_`echo ${GITHUB_SHA} | sed 's/\(.......\).*$/\1/'`_${OS}.tar.gz"
cd ..
tar --create --auto-compress --file ${filename} --exclude-from=qb64/.ci/common-exclusion.list --exclude-from=qb64/.ci/$OS-exclusion.list qb64
current_files=$(aws --output text --query 'Contents[].Key' s3api list-objects --bucket ${BUCKET} --prefix ${OS})
aws s3 cp ${filename} s3://${BUCKET}/${OS}/
for f in $current_files; do
aws s3 rm s3://${BUCKET}/$f
done