You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
322 B
17 lines
322 B
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
IN=$(jq . <&0)
|
|
|
|
VERSION=$(echo $IN | jq -r .tag_name)
|
|
APK_FILENAME=$(echo $IN | jq -r .file_name)
|
|
|
|
UPLOADED=$(rsync -i --ignore-existing $APK_FILENAME sillywalk.de:/srv/www/sillywalk.de/root/releases)
|
|
|
|
if [ -z "$UPLOADED" ]; then
|
|
echo "$VERSION already uploaded. Aborting."
|
|
exit 1
|
|
fi
|
|
|
|
echo $IN
|
|
|