Commit api/japi docs when releasing (#30128)
This commit is contained in:
parent
8eb8396306
commit
c737f1a8e6
1 changed files with 6 additions and 2 deletions
|
|
@ -274,10 +274,14 @@ echolog "Pushing to git origin..."
|
||||||
important git push origin --tags
|
important git push origin --tags
|
||||||
|
|
||||||
echolog "Building docs and pushing to the server..."
|
echolog "Building docs and pushing to the server..."
|
||||||
important ssh ${release_server} "cd ${release_path}/docs/akka; git add .; git commit -m 'before publishing version $version'; true"
|
for section in docs api japi; do
|
||||||
|
important ssh ${release_server} "cd ${release_path}/${section}/akka; git add .; git commit -m 'before publishing version $version $section'; true"
|
||||||
|
done
|
||||||
# using Scala 2.13 here to avoid the infamous problem with missing AskSupport in classpath
|
# using Scala 2.13 here to avoid the infamous problem with missing AskSupport in classpath
|
||||||
important sbt -Dakka.build.scalaVersion=2.13.0 $RELEASE_OPT publishRsync
|
important sbt -Dakka.build.scalaVersion=2.13.0 $RELEASE_OPT publishRsync
|
||||||
important ssh ${release_server} "cd ${release_path}/docs/akka; git add .; git commit -m 'publish version $version'"
|
for section in docs api japi; do
|
||||||
|
important ssh ${release_server} "cd ${release_path}/${section}/akka; git add .; git commit -m 'publish version $version $section'"
|
||||||
|
done
|
||||||
|
|
||||||
echolog "*****"
|
echolog "*****"
|
||||||
echolog "Do not forget to update https://github.com/akka/akka.io/blob/master/versions.json !"
|
echolog "Do not forget to update https://github.com/akka/akka.io/blob/master/versions.json !"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue