This is an automated email from the ASF dual-hosted git repository.

kbowers-ibm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-website.git


The following commit(s) were added to refs/heads/main by this push:
     new c615d87  Update documentation page for 10.2.x (#54)
c615d87 is described below

commit c615d87e03958a6d1b55ef635529790cc1a57579
Author: Kbowers <[email protected]>
AuthorDate: Fri May 29 18:26:21 2026 +0200

    Update documentation page for 10.2.x (#54)
    
    * Update docs for 10.2.x
    
    * oops
    
    * update github actions for 10.2.x
---
 .github/workflows/deploy.yml                | 52 ++++++++++++++++++++++++++++-
 docs/documentation/documentation_10.1.0.mdx |  6 ++--
 docs/documentation/documentation_10.2.0.mdx | 14 ++++++++
 3 files changed, 68 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index c2e7a54..ca5162e 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -131,9 +131,59 @@ jobs:
           name: ${{ matrix.version }}
           path: docs/${{ matrix.version }}
 
+  build-docs-10-2-x:
+    runs-on: ubuntu-latest
+    strategy:
+      matrix:
+        version: [10.2.x]
+    steps:
+      - name: Checkout SonataFlow repository
+        uses: actions/checkout@v4
+        with:
+          repository: apache/incubator-kie-kogito-docs
+          ref: ${{ matrix.version }}
+          path: sonataflow-docs
+
+      - name: Build SonataFlow documentation
+        run: |
+          cd sonataflow-docs
+          npm run install-build
+
+      - name: Checkout kie-docs repository for Drools, Kogito, and OptaPlanner
+        uses: actions/checkout@v4
+        with:
+          repository: apache/incubator-kie-docs
+          ref: ${{ matrix.version }}
+          path: kie-docs
+
+      - name: Build Drools, Kogito, and OptaPlanner documentation
+        run: |
+          cd kie-docs
+          mvn -B clean install -Dfull
+
+      - name: Collect built docs
+        run: |
+          mkdir -p docs/${{ matrix.version }}/sonataflow
+          cp -r sonataflow-docs/build/site/* docs/${{ matrix.version 
}}/sonataflow
+
+          mkdir -p docs/${{ matrix.version }}/drools
+          cp -r kie-docs/drools-docs/target/website/docs/* docs/${{ 
matrix.version }}/drools
+
+          mkdir -p docs/${{ matrix.version }}/kogito
+          cp -r 
kie-docs/kogito-docs/doc-content/apache-kie-kogito/target/generated-docs/html_single/*
 docs/${{ matrix.version }}/kogito
+
+          mkdir -p docs/${{ matrix.version }}/optaplanner
+          cp -r kie-docs/optaplanner-docs/target/generated-docs/html_single/* 
docs/${{ matrix.version }}/optaplanner
+
+      - name: Upload built docs artifact
+        uses: actions/upload-artifact@v4
+        with:
+          name: ${{ matrix.version }}
+          path: docs/${{ matrix.version }}
+
   deploy-website:
     runs-on: ubuntu-latest
-    needs: [build-docs-10-0-x, build-docs-10-1-x]
+    needs: [build-docs-10-0-x, build-docs-10-1-x, build-docs-10-2-x]
     steps:
       - name: Checkout Apache KIE Website repository
         uses: actions/checkout@v4
diff --git a/docs/documentation/documentation_10.1.0.mdx 
b/docs/documentation/documentation_10.1.0.mdx
index 1912653..fcfbc1b 100644
--- a/docs/documentation/documentation_10.1.0.mdx
+++ b/docs/documentation/documentation_10.1.0.mdx
@@ -1,6 +1,6 @@
 ---
 id: documentation_10.1.0
-title: 10.1.0 (latest)
+title: 10.1.0 
 sidebar_position: 99
 ---
 
@@ -8,7 +8,7 @@ sidebar_position: 99
 
 The documentation for Apache KIE (incubating) 10.1.0 is split by component. 
Please refer to each one individually:
 
-* [Drools documentation](pathname:///docs/10.1.x/drools/drools/introduction/) 
<small>([source](https://github.com/apache/incubator-kie-drools/tree/10.1.x/drools-docs))</small>
-* [Kogito documentation](pathname:///docs/10.1.x/kogito/) 
<small>([source](https://github.com/apache/incubator-kie-docs/tree/10.1.x/doc-content/apache-kie-kogito))</small>
+* [Drools documentation](pathname:///docs/10.1.x/drools/drools/introduction/) 
<small>([source](https://github.com/apache/incubator-kie-docs/tree/10.1.x/drools-docs))</small>
+* [Kogito documentation](pathname:///docs/10.1.x/kogito/) 
<small>([source](https://github.com/apache/incubator-kie-docs/tree/10.1.x/kogito-docs))</small>
 * [SonataFlow documentation](pathname:///docs/10.1.x/sonataflow/) 
<small>([source](https://github.com/apache/incubator-kie-kogito-docs/tree/10.1.x/))</small>
 * [OptaPlanner documentation](pathname:///docs/10.1.x/optaplanner/) 
<small>([source](https://github.com/apache/incubator-kie-optaplanner/tree/10.1.x/optaplanner-docs))</small>
\ No newline at end of file
diff --git a/docs/documentation/documentation_10.2.0.mdx 
b/docs/documentation/documentation_10.2.0.mdx
new file mode 100644
index 0000000..39a31d4
--- /dev/null
+++ b/docs/documentation/documentation_10.2.0.mdx
@@ -0,0 +1,14 @@
+---
+id: documentation_10.2.0
+title: 10.2.0 (latest)
+sidebar_position: 98
+---
+
+# Documentation for 10.2.0
+
+The documentation for Apache KIE (incubating) 10.2.0 is split by component. 
Please refer to each one individually:
+
+* [Drools documentation](pathname:///docs/10.2.x/drools/drools/introduction/) 
<small>([source](https://github.com/apache/incubator-kie-docs/tree/10.2.x/drools-docs))</small>
+* [Kogito documentation](pathname:///docs/10.2.x/kogito/) 
<small>([source](https://github.com/apache/incubator-kie-docs/tree/10.2.x/kogito-docs))</small>
+* [SonataFlow documentation](pathname:///docs/10.2.x/sonataflow/) 
<small>([source](https://github.com/apache/incubator-kie-kogito-docs/tree/10.2.x/))</small>
+* [OptaPlanner documentation](pathname:///docs/10.2.x/optaplanner/) 
<small>([source](https://github.com/apache/incubator-kie-docs/tree/10.2.x/optaplanner-docs))</small>
\ No newline at end of file


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to