From aebb1cbb54c6dff6e302f377557d1cd718ef58e9 Mon Sep 17 00:00:00 2001 From: Dean Reinhardt Date: Tue, 6 Jul 2021 10:55:38 +0200 Subject: [PATCH 1/2] Send telegram notification --- .github/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3938b2f..33cd363 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,3 +48,11 @@ jobs: asset_path: ${{ env.path }} asset_name: ${{ env.name }} asset_content_type: application/java-archive + + - name: Send telegram notification + uses: appleboy/telegram-action@master + with: + to: ${{ secrets.TELEGRAM_TO }} + token: ${{ secrets.TELEGRAM_TOKEN }} + message: ${{ env.name }} ${{ env.build }} successful finished. Released at ${{ steps.create_release.outputs.html_url }} + From 4b333d23187d7026d6b1e5c8b7bbb2f4be1db659 Mon Sep 17 00:00:00 2001 From: Dean Reinhardt Date: Tue, 6 Jul 2021 11:03:32 +0200 Subject: [PATCH 2/2] disable web page preview --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 33cd363..f5503bd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,5 +54,6 @@ jobs: with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_TOKEN }} + disable_web_page_preview: true message: ${{ env.name }} ${{ env.build }} successful finished. Released at ${{ steps.create_release.outputs.html_url }}