We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent deafbbd commit 483062dCopy full SHA for 483062d
1 file changed
.github/workflows/release.yml
@@ -705,7 +705,7 @@ jobs:
705
APK_BASENAME=$(basename "$APK_PATH")
706
APK_FILENAME="${APK_BASENAME%.*}-${VARIANT}.${APK_BASENAME##*.}"
707
DOWNLOAD_URL="https://download.appdevforall.org/${APK_FILENAME}"
708
- MESSAGE="${GIT_LOG}"$'\n\n'"Download: ${DOWNLOAD_URL}"
+ MESSAGE=$( printf "Download: %s\n\n%s" "$DOWNLOAD_URL" "$GIT_LOG" )
709
# Telegram message limit 4096; use first 4096 chars
710
MESSAGE="${MESSAGE:0:4096}"
711
curl -s -X POST -H "Content-Type: application/json" \
@@ -716,4 +716,4 @@ jobs:
716
if: always()
717
run: |
718
rm -f app/google-services.json
719
- echo "google-services.json cleaned up successfully"
+ echo "google-services.json cleaned up successfully"
0 commit comments