From ac4655064400e9800871f70c7527b65dc7655ad1 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Sat, 28 Oct 2023 17:54:23 +0100 Subject: [PATCH] publish 1.0.1 docs (#270) --- .github/workflows/publish-1.0-docs.yml | 10 +++++----- project/build.properties | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-1.0-docs.yml b/.github/workflows/publish-1.0-docs.yml index c4b449302..2e626a11e 100644 --- a/.github/workflows/publish-1.0-docs.yml +++ b/.github/workflows/publish-1.0-docs.yml @@ -26,17 +26,17 @@ jobs: - name: Build Documentation run: |- - sbt "set ThisBuild / version := \"1.0.0\"; docs/paradox; unidoc" + sbt "set ThisBuild / version := \"1.0.1\"; 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-connectors/1.0.0/ + mkdir -p target/nightly-docs/docs/pekko-connectors/1.0.1/ mkdir -p target/nightly-docs/docs/pekko-connectors/1.0/ - cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-connectors/1.0.0/docs + cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-connectors/1.0.1/docs cp -r docs/target/paradox/site/main/ target/nightly-docs/docs/pekko-connectors/1.0/docs rm -r docs/target/paradox/site/main/ - cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-connectors/1.0.0/api + cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-connectors/1.0.1/api cp -r target/scala-2.13/unidoc target/nightly-docs/docs/pekko-connectors/1.0/api rm -r target/scala-2.13/unidoc @@ -45,7 +45,7 @@ jobs: with: upload: true switches: --archive --compress --update --delete --progress --relative - local_path: target/nightly-docs/./docs/pekko-connectors/1.0.0 # The intermediate dot is to show `--relative` which paths to operate on + local_path: target/nightly-docs/./docs/pekko-connectors/1.0.1 # 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 }} diff --git a/project/build.properties b/project/build.properties index 27430827b..e8a1e246e 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.6 +sbt.version=1.9.7