File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -327,16 +327,17 @@ updated since last release. Make a new commit with description similar to
327
327
Update Hosted Javadoc
328
328
---------------------
329
329
330
- Download the released Javadoc JAR for the grpc-all project from Maven Central.
331
- Now we need to update gh-pages with that new Javadoc:
330
+ Now we need to update gh-pages with the new Javadoc:
332
331
333
332
``` bash
334
333
git checkout gh-pages
335
334
rm -r javadoc/
336
- unzip -d javadoc path/to/grpc-all-< VERSION> -javadoc.jar
335
+ wget -O grpc-all-javadoc.jar " http://search.maven.org/remotecontent?filepath=io/grpc/grpc-all/$MAJOR .$MINOR .$PATCH /grpc-all-$MAJOR .$MINOR .$PATCH -javadoc.jar"
336
+ unzip -d javadoc grpc-all-javadoc.jar
337
+ rm grpc-all-javadoc.jar
337
338
rm -r javadoc/META-INF/
338
339
git add -A javadoc
339
- git commit -m " Javadoc for <VERSION> "
340
+ git commit -m " Javadoc for $MAJOR . $MINOR . $PATCH "
340
341
```
341
342
342
343
Push gh-pages to the main repository and verify the current version is [ live
You can’t perform that action at this time.
0 commit comments