release notes for 1.2.0 (#2082)

* release notes for 1.2.0

* Update releases-1.2.md

* Update releases-1.2.md

* Update releases-1.2.md
This commit is contained in:
PJ Fanning 2025-09-01 11:10:31 +01:00 committed by GitHub
parent 28680b3548
commit e3c5fe222c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 45 additions and 57 deletions

View file

@ -60,20 +60,20 @@ jobs:
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
run: |-
sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "set ThisBuild / version := \"1.2.0-M2\"; docs/paradox; unidoc"
sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "set ThisBuild / version := \"1.2.0\"; docs/paradox; unidoc"
# Create directory structure upfront since rsync does not create intermediate directories otherwise
- name: Create directory structure
run: |-
mkdir -p target/nightly-docs/docs/pekko/1.2.0-M2/
mkdir -p target/nightly-docs/docs/pekko/1.2.0/
mkdir -p target/nightly-docs/docs/pekko/1.2/
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.2.0-M2/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.2.0/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.2/docs
rm -r docs/target/paradox/site/main/
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.2.0-M2/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.2.0/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.2/api
rm -r target/scala-2.13/unidoc
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.2.0-M2/japi
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.2.0/japi
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.2/japi
rm -r target/javaunidoc
@ -82,7 +82,7 @@ jobs:
with:
upload: true
switches: --archive --compress --update --delete --progress --relative
local_path: target/nightly-docs/./docs/pekko/1.2.0-M2 # The intermediate dot is to show `--relative` which paths to operate on
local_path: target/nightly-docs/./docs/pekko/1.2.0 # The intermediate dot is to show `--relative` which paths to operate on
remote_path: ${{ secrets.NIGHTLIES_RSYNC_PATH }}/pekko
remote_host: ${{ secrets.NIGHTLIES_RSYNC_HOST }}
remote_port: ${{ secrets.NIGHTLIES_RSYNC_PORT }}