update release script again with a reminder for docs update (#1674)

#### What type of PR is this?

<!--
Add one of the following kinds:
/kind bug
/kind cleanup
/kind documentation
/kind feature
-->

update release script again with a reminder for docs update

#### What this PR does / why we need it:

#### Which issue(s) this PR fixes:
<!--
*Automatically closes linked issue when PR is merged.
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`.
-->
Fixes #

#### Special notes for your reviewer:

Signed-off-by: Charlie Drage <charlie@charliedrage.com>
This commit is contained in:
Charlie Drage 2023-07-18 09:08:53 -04:00 committed by GitHub
parent 9d8dcb5184
commit 05f3d40056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,6 +223,7 @@ main() {
"Create tarballs"
"Generate install guide"
"Upload the binaries and push to GitHub release page"
"Update the website"
"Clean"
"Quit")
select opt in "${options[@]}"
@ -253,6 +254,11 @@ main() {
"Upload the binaries and push to GitHub release page")
push $VERSION
;;
"Update the website")
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
echo "Run ./script/manual-docs-sync.sh on the main branch"
echo "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"
;;
"Clean")
clean $VERSION
;;