You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
405 B
17 lines
405 B
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
VERSION=$1
|
|
APK_FILENAME=$2
|
|
|
|
export VERSION
|
|
export DATE="$(date +'%a, %-d %b %Y %H:%M:%S %z')"
|
|
export HOSTNAME="$(hostname).local" \
|
|
export RELEASE_URL="https://sillywalk.de/releases/$APK_FILENAME"
|
|
|
|
envsubst < templates/notification.email | curl \
|
|
--mail-from android-labs@envy.local \
|
|
--mail-rcpt fairemail-release@sillywalk.de \
|
|
--upload-file - \
|
|
smtp://mail.uberc.at
|
|
|