mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
21 lines
891 B
Bash
Executable File
21 lines
891 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo Uploading to Appetize and publishing link to Github...
|
|
echo -n "Branch "
|
|
git ls-remote --heads origin | grep $(git rev-parse HEAD) | cut -d / -f 3
|
|
echo -n "Branch 2 "
|
|
git log -n 1 --pretty=%d HEAD | awk '{print $2}' | sed 's/origin\///' | sed 's/)//'
|
|
|
|
FILENAME="$APPCENTER_OUTPUT_DIRECTORY/app-release.apk"
|
|
|
|
if [ -f $FILENAME ]; then
|
|
APTZ=`curl "https://$APPETIZE@api.appetize.io/v1/apps" -F "file=@$FILENAME" -F "platform=android"`
|
|
echo Apptezize response:
|
|
echo $APTZ
|
|
APPURL=`node -e "let e = JSON.parse('$APTZ'); console.log(e.publicURL);"`
|
|
echo App url: $APPURL
|
|
PR=`node appcenter-post-build-get-pr-number.js`
|
|
echo PR: $PR
|
|
curl -X POST --data "{\"body\":\"This was a triumph. I'm making a note here: HUGE SUCCESS.\n\n [android] $APPURL\"}" -u "$GITHUB" "https://api.github.com/repos/BlueWallet/BlueWallet/issues/$PR/comments"
|
|
fi
|