Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ jobs:
APK_BASENAME=$(basename "$APK_PATH")
APK_FILENAME="${APK_BASENAME%.*}-${VARIANT}.${APK_BASENAME##*.}"
DOWNLOAD_URL="https://download.appdevforall.org/${APK_FILENAME}"
MESSAGE="${GIT_LOG}"$'\n\n'"Download: ${DOWNLOAD_URL}"
MESSAGE=$( printf "Download: %s\n\n%s" "$DOWNLOAD_URL" "$GIT_LOG" )
# Telegram message limit 4096; use first 4096 chars
MESSAGE="${MESSAGE:0:4096}"
curl -s -X POST -H "Content-Type: application/json" \
Expand All @@ -716,4 +716,4 @@ jobs:
if: always()
run: |
rm -f app/google-services.json
echo "google-services.json cleaned up successfully"
echo "google-services.json cleaned up successfully"
Loading