Update .gitea/workflows/astro-deploy.yaml
Some checks failed
/ Build (push) Failing after 37s

This commit is contained in:
log101 2024-05-17 08:23:35 +00:00
parent 7f59bce2ab
commit 307019b134

View File

@ -61,4 +61,24 @@ jobs:
echo start at: echo start at:
date -u date -u
POST_SCRIPT: "echo done at: && date -u" POST_SCRIPT: "echo done at: && date -u"
- name: Send mail
uses: dawidd6/action-send-mail@v3
with:
# Required mail server address if not connection_url:
server_address: log101.dev
# Server port, default 25:
server_port: 465
# Optional whether this connection use TLS (default is true if server_port is 465)
secure: true
# Optional (recommended) mail server username:
username: ${{secrets.MAIL_USERNAME}}
# Optional (recommended) mail server password:
password: ${{secrets.MAIL_PASSWORD}}
# Required mail subject:
subject: Gitea Actions job result
# Required recipients' addresses:
to: ffrknerdm@gmail.com
# Required sender full name (address can be skipped):
from: gitea@log101.dev # <user@example.com>
ignore_cert: true