inspec/.expeditor/announce-release.sh
Seth Chisamore f1aa8917fe
Use Expeditor's built in Bash helper to post release announcement
Signed-off-by: Seth Chisamore <schisamo@chef.io>
2020-04-08 13:43:46 -04:00

24 lines
770 B
Bash
Executable file

#!/bin/bash
set -exou pipefail
# Download the release-notes for our specific build
curl -o release-notes.md "https://packages.chef.io/release-notes/${EXPEDITOR_PRODUCT_KEY}/${EXPEDITOR_VERSION}.md"
topic_title="Chef InSpec $EXPEDITOR_VERSION Released!"
topic_body=$(cat <<EOH
Hello InSpec friends!
We are delighted to announce the availability of version $EXPEDITOR_VERSION of Chef InSpec. Changes include:
$(cat release-notes.md)
---
## Get the Build
You can download binaries directly from [downloads.chef.io](https://downloads.chef.io/$EXPEDITOR_PRODUCT_KEY/$EXPEDITOR_VERSION).
EOH
)
# Use Expeditor's built in Bash helper to post our message: https://git.io/JvxPm
post_discourse_release_announcement "$topic_title" "$topic_body"
# Cleanup
rm release-notes.md