Browse Source

chore: bump release docs (#2340)

Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>
Moritz Johner 2 years ago
parent
commit
0a0d461f84
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/contributing/release.md

+ 3 - 2
docs/contributing/release.md

@@ -38,7 +38,7 @@ export VERSION=x.y.z
 sed -i "s/^VERSION ?= .*/VERSION ?= ${VERSION}/" Makefile
 
 # prep release
-make prepare-stable-release
+make prepare-stable-release ATTACH_IMAGE_DIGESTS=0
 ```
 
 Check the generated files in the `bundle/` directory. If they look good add & commit them, open a PR against this repository. You can always use the [OperatorHub.io/preview](https://operatorhub.io/preview) page to preview the generated CSV.
@@ -50,8 +50,9 @@ git commit -s -m "chore: bump version xyz"
 git push
 ```
 
-Once the PR is merged we need create a pull request against both community-operators repositories. There's a make target that does the heavy lifting for you:
+Once the PR is merged and the image build job on `main` has completed, we need create a pull request against both community-operators repositories. There's a make target that does the heavy lifting for you:
 ```bash
+make attach-image-digests
 make bundle-operatorhub
 ```