mirror of
https://github.com/inspec/inspec
synced 2025-02-17 14:38:43 +00:00
31 lines
874 B
Bash
31 lines
874 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eou pipefail
|
||
|
|
||
|
git clone https://github.com/inspec/inspec.wiki.git
|
||
|
|
||
|
pushd ./inspec.wiki
|
||
|
# Publish release notes to S3
|
||
|
aws s3 cp Pending-Release-Notes.md "s3://chef-automate-artifacts/release-notes/${EXPEDITOR_PRODUCT_KEY}/${EXPEDITOR_VERSION}.md" --acl public-read --content-type "text/plain" --profile chef-cd
|
||
|
aws s3 cp Pending-Release-Notes.md "s3://chef-automate-artifacts/${EXPEDITOR_CHANNEL}/latest/${EXPEDITOR_PRODUCT_KEY}/release-notes.md" --acl public-read --content-type "text/plain" --profile chef-cd
|
||
|
|
||
|
# Reset "Pending Release Notes" wiki page
|
||
|
cat >./Pending-Release-Notes.md <<EOH
|
||
|
## New Features
|
||
|
-
|
||
|
## Improvements
|
||
|
-
|
||
|
## Bug Fixes
|
||
|
-
|
||
|
## Backward Incompatibilities
|
||
|
-
|
||
|
EOH
|
||
|
|
||
|
# Push changes back up to GitHub
|
||
|
git add .
|
||
|
git commit -m "Release Notes for promoted build $EXPEDITOR_VERSION"
|
||
|
git push origin master
|
||
|
popd
|
||
|
|
||
|
rm -rf inspec.wiki
|