21 lines
588 B
YAML
21 lines
588 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
send-mail:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send mail
|
|
uses: dawidd6/action-send-mail@v4
|
|
with:
|
|
# * smtp://user:password@server:port
|
|
# * smtp+starttls://user:password@server:port
|
|
connection_url: ${{secrets.MAIL_CONNECTION}}
|
|
subject: Github Actions job result
|
|
to: obiwan@oo1.dev,yoda@oo1.dev
|
|
from: Luke Skywalker
|
|
# body: Build job of ${{github.repository}} completed successfully!
|
|
attachments: ./*.txt
|
|
priority: high
|