From aebb1cbb54c6dff6e302f377557d1cd718ef58e9 Mon Sep 17 00:00:00 2001 From: Dean Reinhardt Date: Tue, 6 Jul 2021 10:55:38 +0200 Subject: [PATCH] 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 }} +