Fix OS_CLOUD export for image validation
[releng/global-jjb.git] / shell / release-announce.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2018 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> release-announce.sh"
12
13 PROJECT="${GERRIT_PROJECT#releng/}"  # For releng projects strip the prefix
14 TAG_NAME="${GERRIT_REFNAME#refs/tags/}"
15
16 set -eux -o pipefail
17
18 mail_opts=()
19 mail_opts+=("-r" "LF Releng <lf-releng@lists.linuxfoundation.org>")
20 mail_opts+=("-s" "$PROJECT $TAG_NAME released")
21 mail_opts+=("lf-releng@lists.linuxfoundation.org")
22
23 mail "${mail_opts[@]}" << EOF
24 Hi Everyone,
25
26 $PROJECT $TAG_NAME is released. Thanks to everyone who contributed
27 to this release. Release notes are available online at:
28
29 https://docs.releng.linuxfoundation.org/projects/$PROJECT/en/latest/release-notes.html#${TAG_NAME}
30
31 Cheers,
32 LF Releng
33 EOF