Nagram/TMessagesProj/appcenter-post-build.sh

4 lines
259 B
Bash
Raw Normal View History

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