mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
f81fc91bfd
* attempt to fix build correcting error message from travis ci In ./github-dev/cleanup-pr-branch line 5: if [[ ! -z "$TOKEN" ]]; then ^-- SC2236: Use -n instead of ! -z. * Update cleanup-pr-branch * Update release-email-notification corrected SC2236 * Update upload-assets correct SC2236 * Update sendemail Fix SC2236 * Update entrypoint.sh Fix SC2236 * Update run Fix SC2236
37 lines
890 B
Bash
Executable File
37 lines
890 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
set -x
|
|
|
|
if [[ -z "$MAILGUN_API_KEY" ]]; then
|
|
echo "Set the MAILGUN_API_KEY env variable."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -n "$MAILGUN_DOMAIN" ]]; then
|
|
MAILGUN_DOMAIN_NAME=$MAILGUN_DOMAIN
|
|
fi
|
|
|
|
if [[ -z "$MAILGUN_DOMAIN_NAME" ]]; then
|
|
echo "Set the MAILGUN_DOMAIN_NAME env variable."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z "$TO_NAME" ]]; then
|
|
echo "Set the TO_NAME env variable."
|
|
exit 1
|
|
fi
|
|
|
|
if [[ -z "$TO_EMAIL" ]]; then
|
|
echo "Set the TO_EMAIL env variable."
|
|
exit 1
|
|
fi
|
|
|
|
curl -sSL --user "api:${MAILGUN_API_KEY}" \
|
|
"https://api.mailgun.net/v3/${MAILGUN_DOMAIN_NAME}/messages" \
|
|
-F 'from="Mailgun API <mailgun@'"${MAILGUN_DOMAIN_NAME}"'>"' \
|
|
-F "to=${TO_NAME}" \
|
|
-F "to=${TO_EMAIL}" \
|
|
-F 'subject="[github action]: Release '"${GITHUB_REPOSITORY}"':'"${GITHUB_REF}"' uploaded"' \
|
|
-F 'text="The release has been uploaded for https://github.com/'"${GITHUB_REPOSITORY}"'/releases"'
|