summaryrefslogtreecommitdiff
path: root/.expeditor/publish-release-notes.sh
blob: d45cace20f4f7b9924faff895ef7c073ecced805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash

set -eou pipefail

rm -rf chef.wiki

git clone https://x-access-token:${GITHUB_TOKEN}@github.com/chef/chef.wiki.git

pushd ./chef.wiki
  # Publish release notes to S3
  aws s3 cp Pending-Release-Notes-18.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-18.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 "Stable Release Notes" wiki page
  cat >./Pending-Release-Notes-18.md <<EOH
## Compliance Phase Improvements

## New Resources

## Resource Updates

## Packaging

## Security

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 chef.wiki