NekoX/TMessagesProj/appcenter-post-build.sh

4 lines
232 B
Bash
Raw Normal View History

2020-01-29 16:49:18 +01:00
if [ "$AGENT_JOBSTATUS" == "Succeeded" ]; then
export name=$(find $APPCENTER_OUTPUT_DIRECTORY -name '*.apk')
2020-02-01 13:43:12 +01:00
curl https://api.telegram.org/bot${BOT_TOKEN}/sendDocument -X POST -F chat_id="$CHANNEL_ID" -F document="@$name"
2020-01-29 16:49:18 +01:00
fi