From 5b534835518872eb9810fa2bf850065af949e881 Mon Sep 17 00:00:00 2001 From: Hal Eisen Date: Fri, 13 Mar 2026 17:07:09 -0700 Subject: [PATCH] Removing telegram debug info --- .github/workflows/release.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5cffb352..17a8b065b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ permissions: on: schedule: - cron: '0 12 * * *' # Daily at 12:00 PM UTC - workflow_dispatch: # + workflow_dispatch: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -442,17 +442,6 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} ref: main - - name: Verify Telegram token - env: - TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} - run: | - if [ -z "${TELEGRAM_TOKEN}" ]; then - echo "ERROR: TELEGRAM_TOKEN is not set or is empty" - exit 1 - fi - echo "TELEGRAM_TOKEN length: ${#TELEGRAM_TOKEN}" - echo "TELEGRAM_TOKEN (first 3 and last 3 chars): ${TELEGRAM_TOKEN:0:3}...${TELEGRAM_TOKEN: -3}" - - name: Set branch to main for build id: determine_branch run: | @@ -716,7 +705,6 @@ jobs: DOWNLOAD_URL="https://download.appdevforall.org/${APK_FILENAME}" MESSAGE=$(printf "Download: %s\n\n%s" "$DOWNLOAD_URL" "$GIT_LOG") MESSAGE="${MESSAGE:0:4096}" - printf '%s' "$MESSAGE" | od -c curl -s -X POST -H "Content-Type: application/json" \ -d "$(jq -n --arg chat_id "$TELEGRAM_EARLY_ACCESS_CHAT_ID" --arg text "$MESSAGE" '{chat_id: $chat_id, text: $text}')" \ "https://api.telegram.org/bot${TELEGRAM_TOKEN}/sendMessage"