ci: fix notification tasks
This commit is contained in:
parent
2f6e2fe553
commit
f018635683
1 changed files with 4 additions and 3 deletions
|
@ -68,14 +68,15 @@ jobs:
|
||||||
tags: "registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:latest,registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.extract_branch.outputs.REPO_BRANCH }}"
|
tags: "registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:latest,registry.mgrote.net/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.extract_branch.outputs.REPO_BRANCH }}"
|
||||||
- name: Send notification
|
- name: Send notification
|
||||||
uses: dawidd6/action-send-mail@v3
|
uses: dawidd6/action-send-mail@v3
|
||||||
if: always()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
connection_url: smtp://docker10.mgrote.net:1025
|
connection_url: smtp://docker10.mgrote.net:1025
|
||||||
secure: false
|
secure: false
|
||||||
ignore_cert: true
|
ignore_cert: true
|
||||||
to: michael.grote@posteo.de
|
to: michael.grote@posteo.de
|
||||||
from: Gitea Actions <gitea@mgrote.net>
|
from: Gitea Actions <gitea@mgrote.net>
|
||||||
subject: "CI ${{ job.status }} in ${{ env.GITHUB_REPOSITORY }}"
|
subject: "CI ${{ job.status }} in ${{ github.repository }}"
|
||||||
body: |
|
body: |
|
||||||
Repo: ${{ env.GITHUB_REPOSITORY }}
|
Repo: ${{ github.repository }}
|
||||||
|
Job: ${{ github.action }}
|
||||||
Status: ${{ job.status }}
|
Status: ${{ job.status }}
|
||||||
|
|
Loading…
Reference in a new issue