Skip to content

Commit

Permalink
v1.1.2 docs (#1520)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Oct 7, 2024
1 parent fd9a0a4 commit 2421458
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish-1.1-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,20 @@ jobs:
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
run: |-
sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "set ThisBuild / version := \"1.1.1\"; docs/paradox; unidoc"
sbt -Dpekko.genjavadoc.enabled=true -Dpekko.genlicensereport.enabled=true "set ThisBuild / version := \"1.1.2\"; 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.1.1/
mkdir -p target/nightly-docs/docs/pekko/1.1.2/
mkdir -p target/nightly-docs/docs/pekko/1.1/
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.1.1/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.1.2/docs
cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko/1.1/docs
rm -r docs/target/paradox/site/main/
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.1.1/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.1.2/api
cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko/1.1/api
rm -r target/scala-2.13/unidoc
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.1.1/japi
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.1.2/japi
cp -r target/javaunidoc target/nightly-docs/docs/pekko/1.1/japi
rm -r target/javaunidoc
Expand All @@ -78,7 +78,7 @@ jobs:
with:
upload: true
switches: --archive --compress --update --delete --progress --relative
local_path: target/nightly-docs/./docs/pekko/1.1.1 # The intermediate dot is to show `--relative` which paths to operate on
local_path: target/nightly-docs/./docs/pekko/1.1.2 # 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 }}
Expand Down

0 comments on commit 2421458

Please sign in to comment.