mirror of
https://github.com/FWGS/xash3d-fwgs
synced 2024-11-27 04:11:08 +01:00
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
#!/bin/sh
|
|
|
|
# Upload travis generated APKs to the Transfer.sh and Yandex.Disk
|
|
|
|
getDaysSinceRelease()
|
|
{
|
|
printf %04d $(( ( $(date +'%s') - $(date -ud '2015-04-01' +'%s') )/60/60/24 ))
|
|
}
|
|
|
|
DAYSSINCERELEASE=`getDaysSinceRelease`
|
|
COMMITHASH=$(git rev-parse --short HEAD)
|
|
#CURRENTBRANCH=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
|
|
PREFIX=$DAYSSINCERELEASE-$(date +"%H-%M")
|
|
POSTFIX=$COMMITHASH
|
|
|
|
YADISKPATH=`date +%Y/%m/%d`
|
|
|
|
curl -u $YADISK_USERNAME:$YADISK_PASSWORD -X MKCOL https://webdav.yandex.ru/XashTestVersions/`date +%Y`
|
|
curl -u $YADISK_USERNAME:$YADISK_PASSWORD -X MKCOL https://webdav.yandex.ru/XashTestVersions/`date +%Y/%m`/
|
|
curl -u $YADISK_USERNAME:$YADISK_PASSWORD -X MKCOL https://webdav.yandex.ru/XashTestVersions/`date +%Y/%m/%d`/
|
|
|
|
|
|
while [ "$1" != "" ]; do
|
|
FNAME=$1
|
|
FILE_BASE=${FNAME%.*}
|
|
FILE_EXT="${FNAME##*.}"
|
|
OUTNAME=$PREFIX-$FILE_BASE-$POSTFIX.$FILE_EXT
|
|
echo $FNAME: `curl -s --upload-file $FNAME https://transfer.sh/$OUTNAME 2>/dev/null`
|
|
curl -T $FNAME -s -u $YADISK_USERNAME:$YADISK_PASSWORD https://webdav.yandex.ru/XashTestVersions/$YADISKPATH/$OUTNAME > /dev/null
|
|
curl -T $FNAME -s -u $YADISK_USERNAME:$YADISK_PASSWORD https://webdav.yandex.ru/XashTestVersions/current-$FILE_BASE-$TRAVIS_BRANCH.$FILE_EXT > /dev/null
|
|
shift
|
|
done
|
|
exit 0
|