-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(build_on_pull_request): Add send mail on build start (for testing)
- Loading branch information
1 parent
a1da47e
commit 0dce430
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,16 @@ jobs: | |
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Send mail | ||
uses: dawidd6/action-send-mail@v3 | ||
with: | ||
# * smtp://user:password@server:port | ||
# * smtp+starttls://user:password@server:port | ||
connection_url: '${{secrets.MAIL_CONNECTION_URL}}' | ||
subject: '[github-action-done] sikalabs/slu - Build started' | ||
to: [email protected] | ||
from: github-action-done <[email protected]> | ||
body: Build job of ${{github.repository}} has been started! | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-go@v3 | ||
- name: Run GoReleaser | ||
|