From c05beef92bcc6c69f78ccaffabdad34887f5d4e2 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Mon, 2 Sep 2024 20:45:24 +0200 Subject: [PATCH] ff --- .gitea/workflows/build.yaml | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5101aee..4343add 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -65,28 +65,14 @@ jobs: notify: steps: - name: Send notification - uses: docker://registry.mgrote.net/allzweckcontainer:latest + uses: dawidd6/action-send-mail@v3 if: always() #if: failure() - with: - args: echo "CI Error in ${{ GITHUB_REPOSITORY }}" | s-nail \ - --subject="git.mgrote.net - CI-Failure - ${{ GITHUB_REPOSITORY }}" \ - --set=smtp-auth="none" \ - --set=v15-compat \ - --set=mta= \ - -r gitea@mgrote.net \ - michael.grote@posteo.de - - name: Send mail - uses: dawidd6/action-send-mail@v3 with: connection_url: smtp://docker10.mgrote.net:1025 - # Required mail server address if not connection_url: - #server_address: smtp.gmail.com - # Server port, default 25: - #server_port: 465 secure: false - subject: "CI Error in ${{ env.GITHUB_REPOSITORY }}" + ignore_cert: true to: michael.grote@posteo.de from: Gitea Actions + subject: "CI Error in ${{ env.GITHUB_REPOSITORY }}" body: Build job of ${{ env.github.repository }} completed successfully! - ignore_cert: true