This is an automated email from the ASF dual-hosted git repository.
fanningpj pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-pekko-site.git
The following commit(s) were added to refs/heads/main by this push:
new 898221a5 Update README.md
898221a5 is described below
commit 898221a54877fef3351f7db959988923b54db7d8
Author: PJ Fanning <[email protected]>
AuthorDate: Thu Mar 2 00:01:03 2023 +0100
Update README.md
---
README.md | 31 ++++++++++++++++++++++++++++---
1 file changed, 28 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index b3fc03e6..6083ce73 100644
--- a/README.md
+++ b/README.md
@@ -17,18 +17,43 @@ Publishing the Apache Pekko web site requires:
1. Clone https://github.com/apache/incubator-pekko-site into a local directory.
2. Check out the asf-staging branch.
-3. In `incubator-pekko` repo, run
+3a. In `incubator-pekko` repo, run
```
sbt unidoc docs/paradox
# next line requires Java 11 or above
-sbt -Dpekko.genjavadoc.enabled=true Javaunidoc/doc
+sbt -Dpekko.genjavadoc.enabled=true Javaunidoc/doc
+```
+3b. Go back to your local copy of `incubator-pekko-site` and run
+```
+mkdir -p content/docs/pekko/current/
+mkdir -p content/api/pekko/current/
+mkdir -p content/japi/pekko/current/
+```
```
-4. Go back to your local copy of `incubator-pekko-site` and run
+3c. Remain in `incubator-pekko-site` and run
```
cp -r <path>/incubator-pekko/docs/target/paradox/site/main/
content/docs/pekko/current/
cp -r <path>/incubator-pekko/target/scala-2.13/unidoc/
content/api/pekko/current/
cp -r <path>/incubator-pekko/target/javaunidoc/ content/japi/pekko/current/
```
+4a. In `incubator-pekko-http` repo, run
+```
+sbt unidoc docs/paradox
+# next line requires Java 11 or above
+sbt -Dpekko.genjavadoc.enabled=true Javaunidoc/doc
+```
+4b. Go back to your local copy of `incubator-pekko-site` and run
+```
+mkdir -p content/docs/pekko-http/current/
+mkdir -p content/api/pekko-http/current/
+mkdir -p content/japi/pekko-http/current/
+```
+4c. Remain in `incubator-pekko-site` and run
+```
+cp -r <path>/incubator-pekko-http/docs/target/paradox/site/main/
content/docs/pekko-http/current/
+cp -r <path>/incubator-pekko-http/target/scala-2.13/unidoc/
content/api/pekko-http/current/
+cp -r <path>/incubator-pekko-http/target/javaunidoc/
content/japi/pekko-http/current/
+```
5. Perform `git add` on the affected files and `git commit`.
6. Perform `git push`.
7. After a few minutes review https://pekko.staged.apache.org and make sure
the appropriate changes are present.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]