Skip to content

Commit

Permalink
Publish more docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Jun 14, 2023
1 parent 91f311c commit 016c5cf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
run: |-
mkdir -p target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs
mv docs-gen/pekko-sample-fsm-java/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-fsm-java/
mv docs-gen/pekko-sample-cluster-docker-compose-java/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-cluster-docker-compose-java/
mv docs-gen/pekko-sample-cluster-docker-compose-scala/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-cluster-docker-compose-scala/
mv docs-gen/pekko-sample-fsm-scala/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-fsm-scala/
mv docs-gen/pekko-sample-sharding-java/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-sharding-java/
mv docs-gen/pekko-sample-sharding-scala/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-sharding-scala/
Expand All @@ -47,7 +49,8 @@ jobs:
mv docs-gen/pekko-sample-distributed-data-java/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-distributed-data-java/
mv docs-gen/pekko-sample-distributed-data-scala/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-distributed-data-scala/
mv docs-gen/pekko-sample-distributed-workers-scala/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-distributed-workers-scala/
mv docs-gen/pekko-sample-kafka-to-sharding-scala/target/paradox/site/main target/nightly-docs/docs/pekko-samples/${{ github.ref_name }}-snapshot/docs/pekko-sample-kafka-to-sharding-scala/
- name: Upload nightly docs
uses: ./.github/actions/sync-nightlies
with:
Expand Down
12 changes: 12 additions & 0 deletions docs-gen/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,18 @@ lazy val `pekko-sample-fsm-scala` = project
name := "Apache Pekko FSM with Scala",
baseProject := "pekko-sample-fsm-scala")

lazy val `pekko-sample-cluster-docker-compose-java` = project
.enablePlugins(PekkoSamplePlugin)
.settings(
name := "Apache Pekko Cluster Docker Compose with Java",
baseProject := "pekko-sample-cluster-docker-compose-java")

lazy val `pekko-sample-cluster-docker-compose-scala` = project
.enablePlugins(PekkoSamplePlugin)
.settings(
name := "Apache Pekko Cluster Docker Compose with Scala",
baseProject := "pekko-sample-cluster-docker-compose-scala")

lazy val `pekko-sample-persistence-java` = project
.enablePlugins(PekkoSamplePlugin)
.settings(
Expand Down

0 comments on commit 016c5cf

Please sign in to comment.