dev-release: use the --no-cache option for the release build

This should ensure proper version of the packaged core plugins.
If the plugins were already built on an older tag i.e. 2.10-rc1
then these build results are cached. When building a 2.10 and if
the plugins didn't change between the 2.10-rc1 and 2.10 the build
results will be taken from the buck cache and the packaged plugin
versions will still be 2.10-rc1.

Change-Id: I4eebbef4f43abc59a3261b6977de4ca7589bb780
diff --git a/Documentation/dev-release.txt b/Documentation/dev-release.txt
index 6726f4a..b1605db 100644
--- a/Documentation/dev-release.txt
+++ b/Documentation/dev-release.txt
@@ -146,7 +146,8 @@
 * Build the Gerrit WAR and API JARs
 +
 ----
-  buck build release
+  buck clean
+  buck build --no-cache release
   buck build api_install
 ----