From efdf9ef799d36ced43c76529465b25f0157db1f6 Mon Sep 17 00:00:00 2001 From: ibo <41344259+sneazy-ibo@users.noreply.github.com> Date: Sun, 23 Jun 2024 07:06:25 +0200 Subject: [PATCH] feat: fix sed text cutter --- .github/workflows/beta.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index d838400b..d528e669 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -232,7 +232,7 @@ jobs: # ${{ secrets.DISCORD_WEBHOOK }} # Send Telegram message without uploading APK - commit_messages=$(echo "$COMMIT_LOG" | sed 's/[ ]*\[.*$//' message) + commit_messages=$(echo "$COMMIT_LOG" | sed 's/[ ]*\[.*$//') curl -X POST "https://api.telegram.org/bot${{ secrets.TELEGRAM_BOT_TOKEN }}/sendMessage" \ -d "chat_id=${{ secrets.TELEGRAM_CHANNEL_ID }}" \ -d "text=Alpha-Build: ${VERSION}: ${commit_messages}"